aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-03-09 03:25:51 +0000
committernyamatongwe <devnull@localhost>2005-03-09 03:25:51 +0000
commitce0de36921c21505d141fb6a21a9f671b56e9529 (patch)
treeb4c8ffa9dfcc389ffaea31a25c1a38092e414df9 /src
parent8a7156c150addc7657005bb51b9c32bc3baa65a4 (diff)
downloadscintilla-mirror-ce0de36921c21505d141fb6a21a9f671b56e9529.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);