diff options
author | nyamatongwe <devnull@localhost> | 2006-02-25 02:43:03 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2006-02-25 02:43:03 +0000 |
commit | 818cf866da84841e0f46c8f7b717b18926032f25 (patch) | |
tree | 2bdb32179d450bb6b0356d501eccb7bb978c5098 /src/ScintillaBase.cxx | |
parent | 89cb4070bf10f7143df9a40aed89693b029f7e2e (diff) | |
download | scintilla-mirror-818cf866da84841e0f46c8f7b717b18926032f25.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" |