diff options
author | nyamatongwe <unknown> | 2002-02-02 09:15:04 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-02 09:15:04 +0000 |
commit | acacde1e5d454803ba945b1d1a2299a3833ac6d2 (patch) | |
tree | fabf5ebbbe30eac53097fb6d014bf62519e04d97 /include/SciLexer.h | |
parent | 4804863f04783e992e54f1b2894ece94172c155e (diff) | |
download | scintilla-mirror-acacde1e5d454803ba945b1d1a2299a3833ac6d2.tar.gz |
Updated Lua lexer that treats '.' as not being an identifier or keyword
character and allows 5 keyword lists.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 622840995..d87af9faa 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -247,6 +247,11 @@ #define SCE_LUA_OPERATOR 10 #define SCE_LUA_IDENTIFIER 11 #define SCE_LUA_STRINGEOL 12 +#define SCE_LUA_WORD2 13 +#define SCE_LUA_WORD3 14 +#define SCE_LUA_WORD4 15 +#define SCE_LUA_WORD5 16 +#define SCE_LUA_WORD6 17 #define SCE_ERR_DEFAULT 0 #define SCE_ERR_PYTHON 1 #define SCE_ERR_GCC 2 |