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 /win32/deps.mak | |
| 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 'win32/deps.mak')
| -rw-r--r-- | win32/deps.mak | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/win32/deps.mak b/win32/deps.mak index ca63349d1..44723e267 100644 --- a/win32/deps.mak +++ b/win32/deps.mak @@ -4,7 +4,7 @@ ScintillaWin.o: ScintillaWin.cxx ../include/Platform.h \ ../include/Scintilla.h ../include/SString.h ../src/ContractionState.h \ ../src/SVector.h ../src/CellBuffer.h ../src/CallTip.h ../src/KeyMap.h \ ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h ../src/Style.h \ - ../src/AutoComplete.h ../src/ViewStyle.h ../src/Document.h \ + ../src/AutoComplete.h ../src/ViewStyle.h ../src/CharClassify.h ../src/Document.h \ ../src/Editor.h ../src/ScintillaBase.h ../src/UniConversion.h AutoComplete.o: ../src/AutoComplete.cxx ../include/Platform.h \ ../include/PropSet.h ../include/SString.h ../src/AutoComplete.h @@ -12,19 +12,20 @@ CallTip.o: ../src/CallTip.cxx ../include/Platform.h \ ../include/Scintilla.h ../src/CallTip.h CellBuffer.o: ../src/CellBuffer.cxx ../include/Platform.h \ ../include/Scintilla.h ../src/SVector.h ../src/CellBuffer.h +CharClassify.o: ../src/CharClassify.cxx ../src/CharClassify.h ContractionState.o: ../src/ContractionState.cxx ../include/Platform.h \ ../src/ContractionState.h Document.o: ../src/Document.cxx ../include/Platform.h \ ../include/Scintilla.h ../src/SVector.h ../src/CellBuffer.h \ - ../src/Document.h ../src/RESearch.h + ../src/CharClassify.h ../src/Document.h ../src/RESearch.h DocumentAccessor.o: ../src/DocumentAccessor.cxx ../include/Platform.h \ ../include/PropSet.h ../include/SString.h ../src/SVector.h \ ../include/Accessor.h ../src/DocumentAccessor.h ../src/CellBuffer.h \ - ../include/Scintilla.h ../src/Document.h + ../include/Scintilla.h ../src/CharClassify.h ../src/Document.h Editor.o: ../src/Editor.cxx ../include/Platform.h ../include/Scintilla.h \ ../src/ContractionState.h ../src/SVector.h ../src/CellBuffer.h \ ../src/KeyMap.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \ - ../src/Style.h ../src/ViewStyle.h ../src/Document.h ../src/Editor.h + ../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h ../src/Document.h ../src/Editor.h ExternalLexer.o: ../src/ExternalLexer.cxx ../include/Platform.h \ ../include/SciLexer.h ../include/PropSet.h ../include/SString.h \ ../include/Accessor.h ../src/DocumentAccessor.h ../include/KeyWords.h \ @@ -193,7 +194,7 @@ ScintillaBase.o: ../src/ScintillaBase.cxx ../include/Platform.h \ ../src/ContractionState.h ../src/SVector.h ../src/CellBuffer.h \ ../src/CallTip.h ../src/KeyMap.h ../src/Indicator.h ../src/XPM.h \ ../src/LineMarker.h ../src/Style.h ../src/ViewStyle.h \ - ../src/AutoComplete.h ../src/Document.h ../src/Editor.h \ + ../src/AutoComplete.h ../src/CharClassify.h ../src/Document.h ../src/Editor.h \ ../src/ScintillaBase.h Style.o: ../src/Style.cxx ../include/Platform.h ../include/Scintilla.h \ ../src/Style.h |
