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 | |
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')
-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 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 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 36ead0ece..92393cd66 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2779,6 +2779,7 @@ val SCE_LUA_WORD5=16 val SCE_LUA_WORD6=17 val SCE_LUA_WORD7=18 val SCE_LUA_WORD8=19 +val SCE_LUA_LABEL=20 # Lexical states for SCLEX_ERRORLIST lex ErrorList=SCLEX_ERRORLIST SCE_ERR_ val SCE_ERR_DEFAULT=0 |