diff options
author | nyamatongwe <devnull@localhost> | 2003-02-17 11:18:03 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-02-17 11:18:03 +0000 |
commit | 7adcd85e2cdaabba181c1e535348807882f47eba (patch) | |
tree | 9afc83510a6c12a0531c09bbe9a6bff6c3a05168 /src/LexAda.cxx | |
parent | a7e1847a4b0e067949d8f67acab39cf061f90190 (diff) | |
download | scintilla-mirror-7adcd85e2cdaabba181c1e535348807882f47eba.tar.gz |
Upgraded keyword list descriptions from Brian Quinlan.
Diffstat (limited to 'src/LexAda.cxx')
-rw-r--r-- | src/LexAda.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/LexAda.cxx b/src/LexAda.cxx index 30f0732c7..263f7da45 100644 --- a/src/LexAda.cxx +++ b/src/LexAda.cxx @@ -30,7 +30,12 @@ static void ColouriseDocument( WordList *keywordlists[], Accessor &styler); -LexerModule lmAda(SCLEX_ADA, ColouriseDocument, "ada"); +static const char * const adaWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmAda(SCLEX_ADA, ColouriseDocument, "ada", NULL, adaWordListDesc); /* * Implementation |