aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexConf.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-02-17 11:18:06 +0000
committernyamatongwe <devnull@localhost>2003-02-17 11:18:06 +0000
commit0b5372d287924ae28c2b869f6edf2c03035872c8 (patch)
tree8f047b6a2fe6bf684d897292f1317e68b6f73da9 /src/LexConf.cxx
parentde0de1623ef9478f0e3ad68135c4a65a40530b9d (diff)
downloadscintilla-mirror-0b5372d287924ae28c2b869f6edf2c03035872c8.tar.gz
Upgraded keyword list descriptions from Brian Quinlan.
Diffstat (limited to 'src/LexConf.cxx')
-rw-r--r--src/LexConf.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/LexConf.cxx b/src/LexConf.cxx
index c8441f41e..c33cdb5ce 100644
--- a/src/LexConf.cxx
+++ b/src/LexConf.cxx
@@ -175,4 +175,10 @@ static void ColouriseConfDoc(unsigned int startPos, int length, int, WordList *k
delete []buffer;
}
-LexerModule lmConf(SCLEX_CONF, ColouriseConfDoc, "conf");
+static const char * const confWordListDesc[] = {
+ "Directives",
+ "Parameters",
+ 0
+};
+
+LexerModule lmConf(SCLEX_CONF, ColouriseConfDoc, "conf", 0, confWordListDesc);