diff options
author | nyamatongwe <devnull@localhost> | 2005-04-01 01:03:51 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-04-01 01:03:51 +0000 |
commit | 8a3a4f54132af8ecead2306c7b2db953baa5a57c (patch) | |
tree | ec17e63a78b2887cc6a43ddba42296ce4160c1b8 /include | |
parent | fc0d8c9d4d1fb5e5bfed0cabff3a8686f8e4bc28 (diff) | |
download | scintilla-mirror-8a3a4f54132af8ecead2306c7b2db953baa5a57c.tar.gz |
PHPScript is for standalone PHP scripts not part of web pages.
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 6a1dbc697..11533b552 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -81,6 +81,7 @@ #define SCLEX_BLITZBASIC 66 #define SCLEX_PUREBASIC 67 #define SCLEX_HASKELL 68 +#define SCLEX_PHPSCRIPT 69 #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 417591966..349a3c002 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1780,6 +1780,7 @@ val SCLEX_CAML=65 val SCLEX_BLITZBASIC=66 val SCLEX_PUREBASIC=67 val SCLEX_HASKELL=68 +val SCLEX_PHPSCRIPT=69 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a # value assigned in sequence from SCLEX_AUTOMATIC+1. |