diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Face.py | 6 | ||||
-rw-r--r-- | include/SciLexer.h | 1 | ||||
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 4 |
4 files changed, 9 insertions, 3 deletions
diff --git a/include/Face.py b/include/Face.py index 52c9b8d0c..97b700dc5 100644 --- a/include/Face.py +++ b/include/Face.py @@ -72,7 +72,7 @@ class Face: "Category": currentCategory, "Comment": currentComment } if value in self.values: - raise "Duplicate value " + value + " " + name + raise Exception("Duplicate value " + value + " " + name) self.values[value] = 1 self.order.append(name) elif featureType == "evt": @@ -84,7 +84,7 @@ class Face: "Category": currentCategory, "Comment": currentComment } if value in self.events: - raise "Duplicate event " + value + " " + name + raise Exception("Duplicate event " + value + " " + name) self.events[value] = 1 self.order.append(name) elif featureType == "cat": @@ -94,7 +94,7 @@ class Face: name, value = featureVal.split("=", 1) except ValueError: print("Failure %s" % featureVal) - raise + raise Exception() self.features[name] = { "FeatureType": featureType, "Category": currentCategory, diff --git a/include/SciLexer.h b/include/SciLexer.h index e8805f2d6..255e091b7 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -153,6 +153,7 @@ #define SCE_C_GLOBALCLASS 19 #define SCE_C_STRINGRAW 20 #define SCE_C_TRIPLEVERBATIM 21 +#define SCE_C_HASHQUOTEDSTRING 22 #define SCE_D_DEFAULT 0 #define SCE_D_COMMENT 1 #define SCE_D_COMMENTLINE 2 diff --git a/include/Scintilla.h b/include/Scintilla.h index c8ffba04e..9b99436ff 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -431,6 +431,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SHOWLINES 2226 #define SCI_HIDELINES 2227 #define SCI_GETLINEVISIBLE 2228 +#define SCI_GETALLLINESVISIBLE 2236 #define SCI_SETFOLDEXPANDED 2229 #define SCI_GETFOLDEXPANDED 2230 #define SCI_TOGGLEFOLD 2231 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 23da6d5b5..aa0f030dd 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1084,6 +1084,9 @@ fun void HideLines=2227(int lineStart, int lineEnd) # Is a line visible? get bool GetLineVisible=2228(int line,) +# Are all lines visible? +get bool GetAllLinesVisible=2236(,) + # Show the children of a header line. set void SetFoldExpanded=2229(int line, bool expanded) @@ -2497,6 +2500,7 @@ val SCE_C_COMMENTDOCKEYWORDERROR=18 val SCE_C_GLOBALCLASS=19 val SCE_C_STRINGRAW=20 val SCE_C_TRIPLEVERBATIM=21 +val SCE_C_HASHQUOTEDSTRING=22 # Lexical states for SCLEX_D lex D=SCLEX_D SCE_D_ val SCE_D_DEFAULT=0 |