diff options
author | nyamatongwe <devnull@localhost> | 2003-02-17 11:18:11 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-02-17 11:18:11 +0000 |
commit | 2a25b067f78f395392499ac9f19a8028d847d07e (patch) | |
tree | 045f6c279f221341f136acd2d2cdd2e8db3a65f8 /src/LexMatlab.cxx | |
parent | 0b5372d287924ae28c2b869f6edf2c03035872c8 (diff) | |
download | scintilla-mirror-2a25b067f78f395392499ac9f19a8028d847d07e.tar.gz |
Upgraded keyword list descriptions from Brian Quinlan.
Diffstat (limited to 'src/LexMatlab.cxx')
-rw-r--r-- | src/LexMatlab.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/LexMatlab.cxx b/src/LexMatlab.cxx index f75d15c7a..5f4dff3b8 100644 --- a/src/LexMatlab.cxx +++ b/src/LexMatlab.cxx @@ -2,7 +2,7 @@ /** @file LexMatlab.cxx ** Lexer for Matlab. ** Written by José Fonseca - **/ + **/ // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. @@ -165,4 +165,9 @@ static void FoldMatlabDoc(unsigned int startPos, int length, int, } } -LexerModule lmMatlab(SCLEX_MATLAB, ColouriseMatlabDoc, "matlab", FoldMatlabDoc); +static const char * const matlabWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmMatlab(SCLEX_MATLAB, ColouriseMatlabDoc, "matlab", FoldMatlabDoc, matlabWordListDesc); |