aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-11-21 11:25:43 +0000
committernyamatongwe <devnull@localhost>2000-11-21 11:25:43 +0000
commit216b5395e9f11f4a5ae63bd08c154d72d4bb0cb4 (patch)
tree7473a6545465389e9e1c2b8c2f75c78333357db6 /include
parent46dcb7e7c6c68ae4a7e97ec10d1e932bb5c951ce (diff)
downloadscintilla-mirror-216b5395e9f11f4a5ae63bd08c154d72d4bb0cb4.tar.gz
Steffen's patch for here documents.
Diffstat (limited to 'include')
-rw-r--r--include/SciLexer.h6
-rw-r--r--include/Scintilla.iface6
2 files changed, 10 insertions, 2 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
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 8b1791408..068798f2a 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1259,7 +1259,7 @@ val SCE_HPHP_COMMENTLINE=125
val SCE_HPHP_STRINGEOL=126
# Lexical states for SCLEX_PERL
val SCE_PL_DEFAULT=0
-val SCE_PL_HERE=1
+val SCE_PL_ERROR=1
val SCE_PL_COMMENTLINE=2
val SCE_PL_POD=3
val SCE_PL_NUMBER=4
@@ -1280,6 +1280,10 @@ val SCE_PL_REGSUBST=18
val SCE_PL_LONGQUOTE=19
val SCE_PL_BACKTICKS=20
val SCE_PL_DATASECTION=21
+val SCE_PL_HERE_DELIM=22
+val SCE_PL_HERE_Q=23
+val SCE_PL_HERE_QQ=24
+val SCE_PL_HERE_QX=25
# Lexical states for SCLEX_LATEX
val SCE_L_DEFAULT=0
val SCE_L_COMMAND=1