aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2005-03-09 03:25:51 +0000
committernyamatongwe <unknown>2005-03-09 03:25:51 +0000
commitb64920976eb1ddc19630f435c2aee7788b6b6815 (patch)
treeb4c8ffa9dfcc389ffaea31a25c1a38092e414df9 /src
parente588d847d91f634abcac858b615df429febb993e (diff)
downloadscintilla-mirror-b64920976eb1ddc19630f435c2aee7788b6b6815.tar.gz
Changed mask to allow HTML to work.
Diffstat (limited to 'src')
-rw-r--r--src/DocumentAccessor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DocumentAccessor.h b/src/DocumentAccessor.h
index 5a9e40d42..740652045 100644
--- a/src/DocumentAccessor.h
+++ b/src/DocumentAccessor.h
@@ -37,7 +37,7 @@ public:
Accessor(), pdoc(pdoc_), props(props_), id(id_),
lenDoc(-1), validLen(0), chFlags(0), chWhile(0),
startSeg(0), startPosStyling(0),
- mask(31) { // Initialize the mask to the same as the default.
+ mask(127) { // Initialize the mask to be big enough for any lexer.
}
~DocumentAccessor();
bool Match(int pos, const char *s);