diff options
author | nyamatongwe <unknown> | 2001-04-13 04:55:04 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-04-13 04:55:04 +0000 |
commit | 3e36fa6f3ea27bb64ce42bdd1a5b50b52dc6bb04 (patch) | |
tree | 72f9058f86ae76bf8d6131a4e80d87549b4770ad /src/ScintillaBase.h | |
parent | c9925ce492d3ea61e692769c2733d69eed133993 (diff) | |
download | scintilla-mirror-3e36fa6f3ea27bb64ce42bdd1a5b50b52dc6bb04.tar.gz |
Start of new lexer infrastructure.
Lexers can have a fold function as well as a lexer function.
They can be identified by string name as well as an integer ID and may
ask to be automatically assigned that ID.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index 758f75a4c..13172031a 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -40,9 +40,12 @@ protected: #ifdef SCI_LEXER int lexLanguage; + LexerModule *lexCurrent; PropSet props; enum {numWordLists=5}; WordList *keyWordLists[numWordLists]; + void SetLexer(uptr_t wParam); + void SetLexerLanguage(const char *languageName); void Colourise(int start, int end); #endif |