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 /include/SciLexer.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 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 88e8b954b..9274b31de 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -35,6 +35,7 @@ #define SCLEX_PASCAL 18 #define SCLEX_AVE 19 #define SCLEX_ADA 20 +#define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 #define SCE_P_NUMBER 2 |