diff options
author | nyamatongwe <unknown> | 2000-11-01 05:12:06 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-11-01 05:12:06 +0000 |
commit | 9fae12a0ac6dcbc5eb92728f04f9558efe04643d (patch) | |
tree | d7b2aa9e5477ac92edf0d252283b82e480c8a1c3 /include | |
parent | 87e57a5bdad06acf4ef0cfd7550dfac629c51833 (diff) | |
download | scintilla-mirror-9fae12a0ac6dcbc5eb92728f04f9558efe04643d.tar.gz |
Ahmad's Apache CONF lexer.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 10 | ||||
-rw-r--r-- | include/Scintilla.iface | 12 |
2 files changed, 22 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 54ae5f206..96e2ceeb9 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -203,6 +203,16 @@ #define SCE_ERR_CMD 4 #define SCE_ERR_BORLAND 5 #define SCE_ERR_PERL 6 +#define SCE_CONF_DEFAULT 0 +#define SCE_CONF_COMMENT 1 +#define SCE_CONF_NUMBER 2 +#define SCE_CONF_IDENTIFIER 3 +#define SCE_CONF_EXTENSION 4 +#define SCE_CONF_PARAMETER 5 +#define SCE_CONF_STRING 6 +#define SCE_CONF_OPERATOR 7 +#define SCE_CONF_IP 8 +#define SCE_CONF_DIRECTIVE 9 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 5cd822c3d..50b35d723 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1306,6 +1306,18 @@ val SCE_ERR_MS=3 val SCE_ERR_CMD=4 val SCE_ERR_BORLAND=5 val SCE_ERR_PERL=6 +# Lexical states for the SCLEX_CONF (Apache Configuration Files Lexer) +val SCE_CONF_DEFAULT=0 +val SCE_CONF_COMMENT=1 +val SCE_CONF_NUMBER=2 +val SCE_CONF_IDENTIFIER=3 +val SCE_CONF_EXTENSION=4 +val SCE_CONF_PARAMETER=5 +val SCE_CONF_STRING=6 +val SCE_CONF_OPERATOR=7 +val SCE_CONF_IP=8 +val SCE_CONF_DIRECTIVE=9 + # Events |