diff options
| author | nyamatongwe <devnull@localhost> | 2001-04-13 04:55:04 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-04-13 04:55:04 +0000 |
| commit | a1008c54ed13feeb5d1a0dc3ebf3f8c908d541ba (patch) | |
| tree | 72f9058f86ae76bf8d6131a4e80d87549b4770ad /src/ScintillaBase.h | |
| parent | 917e46a21acff859faffb292b28f9c063caf2b92 (diff) | |
| download | scintilla-mirror-a1008c54ed13feeb5d1a0dc3ebf3f8c908d541ba.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 |
