diff options
author | nyamatongwe <unknown> | 2006-02-25 02:43:03 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-02-25 02:43:03 +0000 |
commit | f6994eeda16b695b2abcb9654e704749b28a85b1 (patch) | |
tree | 2bdb32179d450bb6b0356d501eccb7bb978c5098 /src/ScintillaBase.cxx | |
parent | 08a99417d3d6239c5b3ee701dae9d51dfa023097 (diff) | |
download | scintilla-mirror-f6994eeda16b695b2abcb9654e704749b28a85b1.tar.gz |
Patch from Greg Smith with further modifications moved character
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.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 0ca5002a7..2d13efaba 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -31,6 +31,7 @@ #include "Style.h" #include "ViewStyle.h" #include "AutoComplete.h" +#include "CharClassify.h" #include "Document.h" #include "Editor.h" #include "ScintillaBase.h" |