diff options
author | nyamatongwe <unknown> | 2001-05-01 11:12:42 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-05-01 11:12:42 +0000 |
commit | 19724c5fcab3abb25d959a7c7a27950601a45270 (patch) | |
tree | 2d1d090c6804a9af2f81f04c4554c22e819a1487 /src/ScintillaBase.h | |
parent | b669de65e5aecfeb666cb660e0785851d7cde441 (diff) | |
download | scintilla-mirror-19724c5fcab3abb25d959a7c7a27950601a45270.tar.gz |
External lexer feature added by Simon allows lexers to be housed in DLLs with
a .lexer extension which are automatically loaded at startup.
Minor fix to IME support in ScintillaWin.cxx to deal with current mingw headers.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index 13172031a..d5b1e8ba0 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -43,7 +43,7 @@ protected: LexerModule *lexCurrent; PropSet props; enum {numWordLists=5}; - WordList *keyWordLists[numWordLists]; + WordList *keyWordLists[numWordLists+1]; void SetLexer(uptr_t wParam); void SetLexerLanguage(const char *languageName); void Colourise(int start, int end); |