diff options
author | nyamatongwe <devnull@localhost> | 2008-07-26 12:05:14 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-07-26 12:05:14 +0000 |
commit | d657cb26e2e7a023a620ecdcae4a79da53f13bc2 (patch) | |
tree | d075f3445dc503f60c136d59c57c30d292a7e745 /src/LexHTML.cxx | |
parent | a4cf33d917b1c04df690c4531271d09957e9a746 (diff) | |
download | scintilla-mirror-d657cb26e2e7a023a620ecdcae4a79da53f13bc2.tar.gz |
From bug #1776285 by Jason Oster limits scope of checking for "php".
Diffstat (limited to 'src/LexHTML.cxx')
-rw-r--r-- | src/LexHTML.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index c0a47d9ed..2d2bc39ec 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -771,7 +771,7 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty beforePreProc = state; i++; visibleChars++; - i += PrintScriptingIndicatorOffset(styler, styler.GetStartSegment() + 2, i + 10); + i += PrintScriptingIndicatorOffset(styler, styler.GetStartSegment() + 2, i + 6); if (scriptLanguage == eScriptXML) styler.ColourTo(i, SCE_H_XMLSTART); else |