diff options
author | Neil <nyamatongwe@gmail.com> | 2019-04-26 07:53:21 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-04-26 07:53:21 +1000 |
commit | 0af74116cefe1ef66820f434dd057d2345c382fd (patch) | |
tree | e65fb7158e6d9d7bd4ea20c8c4e544ba1a7f07c3 /src/Document.cxx | |
parent | 55735ff858696426509af625a56f3bea8c37d00d (diff) | |
download | scintilla-mirror-0af74116cefe1ef66820f434dd057d2345c382fd.tar.gz |
Backport: Feature [feature-requests:#1238]. Simplify camel case forcing by checking only
for upper and lower case characters instead of current word characters.
This changes behaviour for words like "_word" -> "_Word" instead of remaining
"_word" but that doesn't matter for this feature's intended use which is to allow
display of ASCII-only keywords in the user's preferred casing (else/ELSE/Else)
for languages with case-insensitive keywords.
Backport of changeset 7475:cdb7af706ba1.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index dd11ae42d..9b30b44aa 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -1698,14 +1698,6 @@ Sci::Position Document::ParaDown(Sci::Position pos) const { return LineEnd(line-1); } -bool Document::IsASCIIWordByte(unsigned char ch) const { - if (IsASCII(ch)) { - return charClass.GetClass(ch) == CharClassify::ccWord; - } else { - return false; - } -} - CharClassify::cc Document::WordCharacterClass(unsigned int ch) const { if (dbcsCodePage && (!UTF8IsAscii(ch))) { if (SC_CP_UTF8 == dbcsCodePage) { |