From 94750763850b4cb8051a7ee155ca403322726e44 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 26 Apr 2019 07:53:21 +1000 Subject: 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. --- src/Document.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/Document.h') diff --git a/src/Document.h b/src/Document.h index c5b078a72..0482c6c0e 100644 --- a/src/Document.h +++ b/src/Document.h @@ -482,7 +482,6 @@ public: bool AddWatcher(DocWatcher *watcher, void *userData); bool RemoveWatcher(DocWatcher *watcher, void *userData); - bool IsASCIIWordByte(unsigned char ch) const; CharClassify::cc WordCharacterClass(unsigned int ch) const; bool IsWordPartSeparator(unsigned int ch) const; Sci::Position WordPartLeft(Sci::Position pos) const; -- cgit v1.2.3