aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2004-05-27 11:50:56 +0000
committernyamatongwe <unknown>2004-05-27 11:50:56 +0000
commita869bce0b49a1592bd64350de34942dee26ce3e5 (patch)
treecac57a00b9c878780e7b053c6eecaaf6e66888dc /src/Document.h
parenteb3433124297ef63d38aff5476200193ecdc1798 (diff)
downloadscintilla-mirror-a869bce0b49a1592bd64350de34942dee26ce3e5.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.h2
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);