aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-07-14 10:58:32 +0000
committernyamatongwe <unknown>2007-07-14 10:58:32 +0000
commit665de67a3e1e045af6e0131a0e917df8a171d2d5 (patch)
tree95ff937f63be879b9e37d0bd7caa05a7956a99f7 /include
parent79692af6c51bb115e4a8ddb657eda3d713152730 (diff)
downloadscintilla-mirror-665de67a3e1e045af6e0131a0e917df8a171d2d5.tar.gz
Changes from Kein-Hong Man supports fixes bareword issues and underscores
in numeric literals, and handles ^D and ^Z, subroutine prototypes, and formats.
Diffstat (limited to 'include')
-rw-r--r--include/SciLexer.h3
-rw-r--r--include/Scintilla.iface3
2 files changed, 6 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h
index 85fdfe36f..692cc2198 100644
--- a/include/SciLexer.h
+++ b/include/SciLexer.h
@@ -317,6 +317,9 @@
#define SCE_PL_STRING_QR 29
#define SCE_PL_STRING_QW 30
#define SCE_PL_POD_VERB 31
+#define SCE_PL_SUB_PROTOTYPE 40
+#define SCE_PL_FORMAT_IDENT 41
+#define SCE_PL_FORMAT 42
#define SCE_RB_DEFAULT 0
#define SCE_RB_ERROR 1
#define SCE_RB_COMMENTLINE 2
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 6d05e437e..8e2910cb9 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2237,6 +2237,9 @@ val SCE_PL_STRING_QX=28
val SCE_PL_STRING_QR=29
val SCE_PL_STRING_QW=30
val SCE_PL_POD_VERB=31
+val SCE_PL_SUB_PROTOTYPE=40
+val SCE_PL_FORMAT_IDENT=41
+val SCE_PL_FORMAT=42
# Lexical states for SCLEX_RUBY
lex Ruby=SCLEX_RUBY SCE_RB_
val SCE_RB_DEFAULT=0