diff options
author | mitchell <unknown> | 2019-07-11 11:45:48 -0400 |
---|---|---|
committer | mitchell <unknown> | 2019-07-11 11:45:48 -0400 |
commit | 915e4978fdea3642d27dc94e69d90b140894bc14 (patch) | |
tree | a7eb299d67d64263d40ad8c626d9525534138a5e /win32 | |
parent | 80026929c3d531d1644ddb42c292f262f63be74b (diff) | |
download | scintilla-mirror-915e4978fdea3642d27dc94e69d90b140894bc14.tar.gz |
Backport: Feature [feature-requests:#1295]. Lexer added for DataFlex.
Backport of changeset 7569:ab69548334b7, but with custom `_strnlen` function
since `strnlen` is not part of the C or C++ standard.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/deps.mak | 12 | ||||
-rw-r--r-- | win32/nmdeps.mak | 12 | ||||
-rw-r--r-- | win32/scintilla.mak | 1 |
3 files changed, 25 insertions, 0 deletions
diff --git a/win32/deps.mak b/win32/deps.mak index 8c53840ad..cc0820cca 100644 --- a/win32/deps.mak +++ b/win32/deps.mak @@ -956,6 +956,18 @@ LexD.o: \ ../lexlib/LexerModule.h \ ../lexlib/OptionSet.h \ ../lexlib/DefaultLexer.h +LexDataflex.o: \ + ../lexers/LexDataflex.cxx \ + ../include/ILexer.h \ + ../include/Sci_Position.h \ + ../include/Scintilla.h \ + ../include/SciLexer.h \ + ../lexlib/WordList.h \ + ../lexlib/LexAccessor.h \ + ../lexlib/Accessor.h \ + ../lexlib/StyleContext.h \ + ../lexlib/CharacterSet.h \ + ../lexlib/LexerModule.h LexDiff.o: \ ../lexers/LexDiff.cxx \ ../include/ILexer.h \ diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak index 8ddedfc79..83afc4abf 100644 --- a/win32/nmdeps.mak +++ b/win32/nmdeps.mak @@ -956,6 +956,18 @@ $(DIR_O)/LexD.obj: \ ../lexlib/LexerModule.h \ ../lexlib/OptionSet.h \ ../lexlib/DefaultLexer.h +$(DIR_O)/LexDataflex.obj: \ + ../lexers/LexDataflex.cxx \ + ../include/ILexer.h \ + ../include/Sci_Position.h \ + ../include/Scintilla.h \ + ../include/SciLexer.h \ + ../lexlib/WordList.h \ + ../lexlib/LexAccessor.h \ + ../lexlib/Accessor.h \ + ../lexlib/StyleContext.h \ + ../lexlib/CharacterSet.h \ + ../lexlib/LexerModule.h $(DIR_O)/LexDiff.obj: \ ../lexers/LexDiff.cxx \ ../include/ILexer.h \ diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 49ae58a25..ec229a0cf 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -135,6 +135,7 @@ LEXOBJS=\ $(DIR_O)\LexCsound.obj \ $(DIR_O)\LexCSS.obj \ $(DIR_O)\LexD.obj \ + $(DIR_O)\LexDataflex.obj \ $(DIR_O)\LexDiff.obj \ $(DIR_O)\LexDMAP.obj \ $(DIR_O)\LexDMIS.obj \ |