diff options
author | nyamatongwe <unknown> | 2001-10-27 11:16:05 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-10-27 11:16:05 +0000 |
commit | 83ec763aff39f7dd7dbd80954335e1841d061601 (patch) | |
tree | 6592b77f5041e3288038ce38bb000b2b8a42a248 | |
parent | afcb7dbf5ce5a1e8ae2b8b7c0c40643b1b19be9c (diff) | |
download | scintilla-mirror-83ec763aff39f7dd7dbd80954335e1841d061601.tar.gz |
Added lexical mode numbers for ASP and PHP.
-rw-r--r-- | include/SciLexer.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index e4405eada..63e2689a8 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -43,6 +43,8 @@ #define SCLEX_NNCRONTAB 26 #define SCLEX_BULLANT 27 #define SCLEX_VBSCRIPT 28 +#define SCLEX_ASP 29 +#define SCLEX_PHP 30 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 30e3da0b3..199e60ac7 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1281,6 +1281,8 @@ val SCLEX_TCL=25 val SCLEX_NNCRONTAB=26 val SCLEX_BULLANT=27 val SCLEX_VBSCRIPT=28 +val SCLEX_ASP=29 +val SCLEX_PHP=30 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a # value assigned in sequence from SCLEX_AUTOMATIC+1. |