diff options
author | nyamatongwe <devnull@localhost> | 2011-08-05 11:14:43 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-08-05 11:14:43 +1000 |
commit | 1429e6853794fb0cf5c47d791145306652fbb746 (patch) | |
tree | f1c89da459413c135cd4f1d900dfee2b10b467fc /include/SciLexer.h | |
parent | a1bfde560cca71dde47fcf48b03e230a1d9a7312 (diff) | |
download | scintilla-mirror-1429e6853794fb0cf5c47d791145306652fbb746.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 |