aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CharClassify.cxx
AgeCommit message (Collapse)AuthorFilesLines
2019-01-13Backport: Replace the only use of a function from <cctype> with a Scintilla ↵Neil1-2/+3
function. Remove inclusion of <cctype> except in lexers as cctype functions often behave poorly and may crash for out of bounds arguments. Backport of changeset 7228:348e55f8107c.
2018-04-21Backport: Safety improvements for character code - drop reinterpret_cast, ↵Neil1-1/+1
ensure more variables are initialized, specify noexcept when safe. Backport of changeset 6727:8f4de063e95c.
2017-09-11Backport: The Scintilla namespace is always active for internal symbols and ↵Neil1-2/+0
for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3.
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-2/+2
where it may be needed in the future.
2016-08-20Make some methods const where reasonable.Neil1-1/+1
2015-07-04Make std::exception visible to all core code to remove chance that a differentNeil1-0/+2
tool set will not indirectly include <stdexcept>.
2014-04-29Stop disabling warnings where no longer needed.Neil1-5/+0
2012-05-29add CharClassifier::GetCharsOfClassMook1-0/+16
add SCI_GETWORDCHARS(<unused>, stringresult chars) command to get word chars add SCI_GETWHITESPACECHARS(<unused>, stringresult chars) to get whitespace chars add SCI_GETPUNCTUATIONCHARS(<unused>, stringresult chars) to get punctutation also add tests for {Set,Get}{Word,Whitespce,Punctuation}Chars, CharClassifier
2010-07-13Files changed for new lexer design.nyamatongwe1-34/+4
2009-07-21Need stdlib.h for size_t for some compilers.nyamatongwe1-0/+1
2009-07-21Using a much simpler property set implementation.nyamatongwe1-0/+34
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString.
2006-02-25Patch from Greg Smith with further modifications moved characternyamatongwe1-0/+43
classification from Document into a separate CharClassify class and file and uses this from RESearch for regular expression word end \< and \> instead of built-in table.