diff options
author | nyamatongwe <unknown> | 2011-08-05 11:14:43 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-08-05 11:14:43 +1000 |
commit | 0f6df3f52a8b10105b209936151fe30f6c03628b (patch) | |
tree | c8e843d10d0f37277898e74e723a4cfe3d89cefe /include/SciLexer.h | |
parent | 2ecb1731ad9699b6bdccfdaad71136c771ff47cb (diff) | |
download | scintilla-mirror-0f6df3f52a8b10105b209936151fe30f6c03628b.tar.gz |
Lua lexer update for Lua 5.2 beta. Feature #3386330.
(a) \* escapes in strings changed to \z
(b) goto <label> highlighting for same line only
(c) :: <label> :: highlighting for same line only
From Kein-Hong Man.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 1d5b69ede..c7d79aa2c 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -428,6 +428,7 @@ #define SCE_LUA_WORD6 17 #define SCE_LUA_WORD7 18 #define SCE_LUA_WORD8 19 +#define SCE_LUA_LABEL 20 #define SCE_ERR_DEFAULT 0 #define SCE_ERR_PYTHON 1 #define SCE_ERR_GCC 2 |