diff options
author | nyamatongwe <unknown> | 2004-08-24 00:51:34 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2004-08-24 00:51:34 +0000 |
commit | 9f6be89c18414c9282d7adf8a1fae9a21cde8b82 (patch) | |
tree | af913f6236c127cfd818e634bdcd6d95a94b8eab /include | |
parent | 65548a49e401c4e5ff2d706323640dbce195eb71 (diff) | |
download | scintilla-mirror-9f6be89c18414c9282d7adf8a1fae9a21cde8b82.tar.gz |
Patch from Philippe Lhoste to support second set of keywords for
CSS 2.
Removal of css settings from html.properties where they duplicated
settings from css.properties.
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 23d2b2161..666ad09fe 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -500,6 +500,7 @@ #define SCE_CSS_DIRECTIVE 12 #define SCE_CSS_DOUBLESTRING 13 #define SCE_CSS_SINGLESTRING 14 +#define SCE_CSS_IDENTIFIER2 15 #define SCE_POV_DEFAULT 0 #define SCE_POV_COMMENT 1 #define SCE_POV_COMMENTLINE 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index ee50968df..a31148270 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2250,6 +2250,7 @@ val SCE_CSS_IMPORTANT=11 val SCE_CSS_DIRECTIVE=12 val SCE_CSS_DOUBLESTRING=13 val SCE_CSS_SINGLESTRING=14 +val SCE_CSS_IDENTIFIER2=15 # Lexical states for SCLEX_POV lex POV=SCLEX_POV SCE_POV_ val SCE_POV_DEFAULT=0 |