diff options
author | nyamatongwe <devnull@localhost> | 2008-10-08 10:55:19 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-10-08 10:55:19 +0000 |
commit | 43ef6e9171cb00bb8c0e7e18d7a9c45cb2f680a4 (patch) | |
tree | 63b2b045bfba134ff00822f125c79dc52c0f41aa | |
parent | f79ac5c6dfb5519ee712ad5717564a946f7144f4 (diff) | |
download | scintilla-mirror-43ef6e9171cb00bb8c0e7e18d7a9c45cb2f680a4.tar.gz |
Stripped initial whitespace on LexerModule definition so that it is found
by script and so goes into list of lexers.
-rw-r--r-- | src/KeyWords.cxx | 1 | ||||
-rw-r--r-- | src/LexMySQL.cxx | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 49d17befa..d98c43ffa 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -193,6 +193,7 @@ int Scintilla_LinkLexers() { LINK_LEXER(lmMETAPOST); LINK_LEXER(lmMMIXAL); LINK_LEXER(lmMSSQL); + LINK_LEXER(lmMySQL); LINK_LEXER(lmNncrontab); LINK_LEXER(lmNsis); LINK_LEXER(lmNull); diff --git a/src/LexMySQL.cxx b/src/LexMySQL.cxx index 438d307a3..742ff4339 100644 --- a/src/LexMySQL.cxx +++ b/src/LexMySQL.cxx @@ -364,4 +364,4 @@ static const char * const mysqlWordListDesc[] = { "User Keywords 3" }; - LexerModule lmMySQL(SCLEX_MYSQL, ColouriseMySQLDoc, "mysql", FoldMySQLDoc, mysqlWordListDesc); +LexerModule lmMySQL(SCLEX_MYSQL, ColouriseMySQLDoc, "mysql", FoldMySQLDoc, mysqlWordListDesc); |