diff options
author | nyamatongwe <devnull@localhost> | 2003-09-21 02:19:29 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-21 02:19:29 +0000 |
commit | 8274c99d6e573caf46adb1bd47bb1d1ab890cfed (patch) | |
tree | c6ad99d675b38de614dc9e41e5c3c24e1c79ea30 | |
parent | 5facd22767b726c4f20242e6bda20889d723c6d9 (diff) | |
download | scintilla-mirror-8274c99d6e573caf46adb1bd47bb1d1ab890cfed.tar.gz |
YAML lexer added.
-rw-r--r-- | gtk/makefile | 2 | ||||
-rw-r--r-- | gtk/scintilla.mak | 3 | ||||
-rw-r--r-- | src/KeyWords.cxx | 1 | ||||
-rw-r--r-- | win32/makefile | 2 | ||||
-rw-r--r-- | win32/scintilla.mak | 3 | ||||
-rw-r--r-- | win32/scintilla_vc6.mak | 3 |
6 files changed, 12 insertions, 2 deletions
diff --git a/gtk/makefile b/gtk/makefile index eb93bb909..dfc161d85 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -64,7 +64,7 @@ LexAda.o LexAsm.o LexAVE.o LexBaan.o LexBullant.o LexCLW.o LexConf.o LexCPP.o \ LexCrontab.o LexCSS.o LexEiffel.o LexEScript.o LexFortran.o LexHTML.o \ LexLisp.o LexLout.o LexLua.o LexMatlab.o LexMMIXAL.o LexMPT.o LexNsis.o \ LexOthers.o LexPascal.o LexPerl.o LexPOV.o LexPS.o LexPython.o LexRuby.o \ -LexScriptol.o LexSQL.o LexVB.o +LexScriptol.o LexSQL.o LexVB.o LexYAML.o #--Autogenerated -- end of automatically generated section # The LEXOBJS have to be treated specially as the functions in them are not called from external code diff --git a/gtk/scintilla.mak b/gtk/scintilla.mak index 2e1e1d7cf..4f423ac8b 100644 --- a/gtk/scintilla.mak +++ b/gtk/scintilla.mak @@ -151,6 +151,7 @@ LEXOBJS=\ $(DIR_O)\LexScriptol.obj \ $(DIR_O)\LexSQL.obj \ $(DIR_O)\LexVB.obj \ + $(DIR_O)\LexYAML.obj \ #--Autogenerated -- end of automatically generated section @@ -325,6 +326,8 @@ $(DIR_O)\LexSQL.obj: ..\src\LexSQL.cxx $(LEX_HEADERS) $(DIR_O)\LexVB.obj: ..\src\LexVB.cxx $(LEX_HEADERS) +$(DIR_O)\LexYAML.obj: ..\src\LexYAML.cxx $(LEX_HEADERS) + #--Autogenerated -- end of automatically generated section diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 33ab54efc..35bb1f594 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -175,6 +175,7 @@ int Scintilla_LinkLexers() { LINK_LEXER(lmSQL); LINK_LEXER(lmVB); LINK_LEXER(lmVBScript); + LINK_LEXER(lmYAML); //--Autogenerated -- end of automatically generated section diff --git a/win32/makefile b/win32/makefile index d085419ed..87550fc1a 100644 --- a/win32/makefile +++ b/win32/makefile @@ -54,7 +54,7 @@ LexAda.o LexAsm.o LexAVE.o LexBaan.o LexBullant.o LexCLW.o LexConf.o LexCPP.o \ LexCrontab.o LexCSS.o LexEiffel.o LexEScript.o LexFortran.o LexHTML.o \ LexLisp.o LexLout.o LexLua.o LexMatlab.o LexMMIXAL.o LexMPT.o LexNsis.o \ LexOthers.o LexPascal.o LexPerl.o LexPOV.o LexPS.o LexPython.o LexRuby.o \ -LexScriptol.o LexSQL.o LexVB.o +LexScriptol.o LexSQL.o LexVB.o LexYAML.o #--Autogenerated -- end of automatically generated section SOBJS = ScintillaWin.o ScintillaBase.o Editor.o Document.o \ diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 651878a78..6e7a5aad9 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -140,6 +140,7 @@ LEXOBJS=\ $(DIR_O)\LexScriptol.obj \ $(DIR_O)\LexSQL.obj \ $(DIR_O)\LexVB.obj \ + $(DIR_O)\LexYAML.obj \ #--Autogenerated -- end of automatically generated section @@ -311,6 +312,8 @@ $(DIR_O)\LexSQL.obj: ..\src\LexSQL.cxx $(LEX_HEADERS) $(DIR_O)\LexVB.obj: ..\src\LexVB.cxx $(LEX_HEADERS) +$(DIR_O)\LexYAML.obj: ..\src\LexYAML.cxx $(LEX_HEADERS) + #--Autogenerated -- end of automatically generated section diff --git a/win32/scintilla_vc6.mak b/win32/scintilla_vc6.mak index 0321b4b11..780e47a7d 100644 --- a/win32/scintilla_vc6.mak +++ b/win32/scintilla_vc6.mak @@ -142,6 +142,7 @@ LEXOBJS=\ $(DIR_O)\LexScriptol.obj \ $(DIR_O)\LexSQL.obj \ $(DIR_O)\LexVB.obj \ + $(DIR_O)\LexYAML.obj \ #--Autogenerated -- end of automatically generated section @@ -313,6 +314,8 @@ $(DIR_O)\LexSQL.obj: ..\src\LexSQL.cxx $(LEX_HEADERS) $(DIR_O)\LexVB.obj: ..\src\LexVB.cxx $(LEX_HEADERS) +$(DIR_O)\LexYAML.obj: ..\src\LexYAML.cxx $(LEX_HEADERS) + #--Autogenerated -- end of automatically generated section |