aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/SciLexer.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-02-02 09:15:04 +0000
committernyamatongwe <devnull@localhost>2002-02-02 09:15:04 +0000
commit49d4e5f3ea334565845fd8893583c5b2f91c310a (patch)
treefabf5ebbbe30eac53097fb6d014bf62519e04d97 /include/SciLexer.h
parent427b928c19ee3f664f9a0921474a597bb12de0bc (diff)
downloadscintilla-mirror-49d4e5f3ea334565845fd8893583c5b2f91c310a.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.h5
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