diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/KeyWords.cxx | 2 | ||||
-rw-r--r-- | src/LexBullant.cxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 756037a9a..c759d600f 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -128,6 +128,7 @@ int wxForceScintillaLexers(void) { extern LexerModule lmSQL; extern LexerModule lmVB; extern LexerModule lmXML; + extern LexerModule lmBullant; if ( &lmAda @@ -153,6 +154,7 @@ int wxForceScintillaLexers(void) { && &lmLISP && &lmLua && &lmNull + && &lmBullant ) { return 1; diff --git a/src/LexBullant.cxx b/src/LexBullant.cxx index e2a04b0c4..0deae1051 100644 --- a/src/LexBullant.cxx +++ b/src/LexBullant.cxx @@ -80,7 +80,7 @@ static void ColouriseBullantDoc(unsigned int startPos, int length, int initStyle char chNext = styler[startPos]; unsigned int lengthDoc = startPos + length; int visibleChars = 0; - int blockChange = 0; + //int blockChange = 0; styler.StartSegment(startPos); int endFoundThisLine = 0; for (unsigned int i = startPos; i < lengthDoc; i++) { |