diff options
author | nyamatongwe <devnull@localhost> | 2003-02-17 11:18:05 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-02-17 11:18:05 +0000 |
commit | de0de1623ef9478f0e3ad68135c4a65a40530b9d (patch) | |
tree | d84608804cf30f6e7bc8bbc71729372510926f4c | |
parent | 42f022fc914d6888f55af7e96add39aca735d102 (diff) | |
download | scintilla-mirror-de0de1623ef9478f0e3ad68135c4a65a40530b9d.tar.gz |
Upgraded keyword list descriptions from Brian Quinlan.
-rw-r--r-- | src/LexCSS.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/LexCSS.cxx b/src/LexCSS.cxx index fdf53efba..618d637e2 100644 --- a/src/LexCSS.cxx +++ b/src/LexCSS.cxx @@ -243,4 +243,10 @@ static void FoldCSSDoc(unsigned int startPos, int length, int, WordList *[], Acc styler.SetLevel(lineCurrent, levelPrev | flagsNext); } -LexerModule lmCss(SCLEX_CSS, ColouriseCssDoc, "css", FoldCSSDoc); +static const char * const cssWordListDesc[] = { + "Keywords", + "Pseudo classes", + 0 +}; + +LexerModule lmCss(SCLEX_CSS, ColouriseCssDoc, "css", FoldCSSDoc, cssWordListDesc); |