diff options
author | nyamatongwe <devnull@localhost> | 2000-11-21 11:25:43 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-11-21 11:25:43 +0000 |
commit | 216b5395e9f11f4a5ae63bd08c154d72d4bb0cb4 (patch) | |
tree | 7473a6545465389e9e1c2b8c2f75c78333357db6 /include/SciLexer.h | |
parent | 46dcb7e7c6c68ae4a7e97ec10d1e932bb5c951ce (diff) | |
download | scintilla-mirror-216b5395e9f11f4a5ae63bd08c154d72d4bb0cb4.tar.gz |
Steffen's patch for here documents.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 7edf11a4d..98b5e29a7 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -158,7 +158,7 @@ #define SCE_HPHP_COMMENTLINE 125 #define SCE_HPHP_STRINGEOL 126 #define SCE_PL_DEFAULT 0 -#define SCE_PL_HERE 1 +#define SCE_PL_ERROR 1 #define SCE_PL_COMMENTLINE 2 #define SCE_PL_POD 3 #define SCE_PL_NUMBER 4 @@ -179,6 +179,10 @@ #define SCE_PL_LONGQUOTE 19 #define SCE_PL_BACKTICKS 20 #define SCE_PL_DATASECTION 21 +#define SCE_PL_HERE_DELIM 22 +#define SCE_PL_HERE_Q 23 +#define SCE_PL_HERE_QQ 24 +#define SCE_PL_HERE_QX 25 #define SCE_L_DEFAULT 0 #define SCE_L_COMMAND 1 #define SCE_L_TAG 2 |