diff options
author | nyamatongwe <devnull@localhost> | 2006-01-28 22:03:42 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2006-01-28 22:03:42 +0000 |
commit | c633b981bfa18f6bc133cf82c64f4c540905e81f (patch) | |
tree | 60bd9b1962f048a264d6746f552a88ea759cc73d /include/SciLexer.h | |
parent | 464dae4d5205dae1743d6552f05c796df32349ea (diff) | |
download | scintilla-mirror-c633b981bfa18f6bc133cf82c64f4c540905e81f.tar.gz |
Added Inno Setup lexer from Friedrich Vedder.
Removed comment saying GrabFocus is GTK+ specific.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 9c7fc8a7d..204349ce4 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -88,6 +88,7 @@ #define SCLEX_FLAGSHIP 73 #define SCLEX_CSOUND 74 #define SCLEX_FREEBASIC 75 +#define SCLEX_INNOSETUP 76 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1008,6 +1009,19 @@ #define SCE_CSOUND_IRATE_VAR 13 #define SCE_CSOUND_GLOBAL_VAR 14 #define SCE_CSOUND_STRINGEOL 15 +#define SCE_INNO_DEFAULT 0 +#define SCE_INNO_COMMENT 1 +#define SCE_INNO_KEYWORD 2 +#define SCE_INNO_PARAMETER 3 +#define SCE_INNO_SECTION 4 +#define SCE_INNO_PREPROC 5 +#define SCE_INNO_PREPROC_INLINE 6 +#define SCE_INNO_COMMENT_PASCAL 7 +#define SCE_INNO_KEYWORD_PASCAL 8 +#define SCE_INNO_KEYWORD_USER 9 +#define SCE_INNO_STRING_DOUBLE 10 +#define SCE_INNO_STRING_SINGLE 11 +#define SCE_INNO_IDENTIFIER 12 #define SCLEX_ASP 29 #define SCLEX_PHP 30 //--Autogenerated -- end of section automatically generated from Scintilla.iface |