aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexHTML.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2006-12-19 11:51:29 +0000
committernyamatongwe <unknown>2006-12-19 11:51:29 +0000
commit2671c9d92a04204bbb5f687713794e4a5809cf6c (patch)
tree1b5dea682a78c9961e628c36b87956690eec2c21 /src/LexHTML.cxx
parent8b78c030d7ed0cdaa00c1ca4ec6fedf09f901f42 (diff)
downloadscintilla-mirror-2671c9d92a04204bbb5f687713794e4a5809cf6c.tar.gz
Fix for comment terminating for ?> in VB ASP.
Diffstat (limited to 'src/LexHTML.cxx')
-rw-r--r--src/LexHTML.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx
index dad8fce46..b4f471631 100644
--- a/src/LexHTML.cxx
+++ b/src/LexHTML.cxx
@@ -173,6 +173,7 @@ static inline bool stateAllowsTermination(int state) {
bool allowTermination = !isStringState(state);
if (allowTermination) {
switch (state) {
+ case SCE_HB_COMMENTLINE:
case SCE_HPHP_COMMENT:
case SCE_HP_COMMENTLINE:
case SCE_HPA_COMMENTLINE: