diff options
| author | nyamatongwe <unknown> | 2003-03-04 10:58:44 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2003-03-04 10:58:44 +0000 |
| commit | fa9b19097f47b2740666b7bd305c2c335a90326b (patch) | |
| tree | a47f535ef78207761f9e096ddab1cdd8b5300706 /include | |
| parent | 69daddeb2a241af212edca89f6a7422e6f8a5053 (diff) | |
| download | scintilla-mirror-fa9b19097f47b2740666b7bd305c2c335a90326b.tar.gz | |
Patch from Jakub to add quoted strings to CSS lexer.
Diffstat (limited to 'include')
| -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 80b3ef22b..2115aae1a 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -444,6 +444,8 @@ #define SCE_CSS_ID 10 #define SCE_CSS_IMPORTANT 11 #define SCE_CSS_DIRECTIVE 12 +#define SCE_CSS_DOUBLESTRING 13 +#define SCE_CSS_SINGLESTRING 14 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif diff --git a/include/Scintilla.iface b/include/Scintilla.iface index a0c73053e..4ec3566a1 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2002,6 +2002,8 @@ val SCE_CSS_COMMENT=9 val SCE_CSS_ID=10 val SCE_CSS_IMPORTANT=11 val SCE_CSS_DIRECTIVE=12 +val SCE_CSS_DOUBLESTRING=13 +val SCE_CSS_SINGLESTRING=14 # Events |
