diff options
author | nyamatongwe <devnull@localhost> | 2001-08-14 23:26:08 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-14 23:26:08 +0000 |
commit | 43f0db3fba1641bfd5742880c9341df9097b02a2 (patch) | |
tree | e7be96de2081029e5a02ee334a0c911dd8dcd5c3 | |
parent | b5ce2fb0674a14d01f352390761f654443ac0c4a (diff) | |
download | scintilla-mirror-43f0db3fba1641bfd5742880c9341df9097b02a2.tar.gz |
Added define for TCL lexer.
-rw-r--r-- | include/SciLexer.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 54d3ace42..591bd06aa 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -39,6 +39,7 @@ #define SCLEX_RUBY 22 #define SCLEX_EIFFEL 23 #define SCLEX_EIFFELKW 24 +#define SCLEX_TCL 25 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 0b0177291..a085e0463 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1263,6 +1263,7 @@ val SCLEX_LISP=21 val SCLEX_RUBY=22 val SCLEX_EIFFEL=23 val SCLEX_EIFFELKW=24 +val SCLEX_TCL=25 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a # value assigned in sequence from SCLEX_AUTOMATIC+1. val SCLEX_AUTOMATIC=1000 |