diff options
author | nyamatongwe <devnull@localhost> | 2004-05-27 11:50:56 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-05-27 11:50:56 +0000 |
commit | d195250d0363b59e6e9aa7ec15cd76ecaa704306 (patch) | |
tree | cac57a00b9c878780e7b053c6eecaaf6e66888dc /src/Document.h | |
parent | 8e7b36a79930c6665cbbb9fd8f62753b25bf1546 (diff) | |
download | scintilla-mirror-d195250d0363b59e6e9aa7ec15cd76ecaa704306.tar.gz |
Fixed behaviour of SetWordChars so characters can be removed
from set of word characters. Implemented by setting any
(alphanumeric or '_') characters not in argument to be
punctuation.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 6cba0260f..54ecadb00 100644 --- a/src/Document.h +++ b/src/Document.h @@ -203,7 +203,7 @@ public: void ChangeCase(Range r, bool makeUpperCase); - void SetDefaultCharClasses(); + void SetDefaultCharClasses(bool includeWordClass); void SetCharClasses(const unsigned char *chars, charClassification newCharClass); void SetStylingBits(int bits); void StartStyling(int position, char mask); |