aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2006-12-19 11:51:29 +0000
committernyamatongwe <devnull@localhost>2006-12-19 11:51:29 +0000
commit0c4ca75a6eecbfd7dcca835997e0ac1ae61018e9 (patch)
tree1b5dea682a78c9961e628c36b87956690eec2c21 /src
parenta4188d2279451ed3109b2cdde2573fa053d1dd8c (diff)
downloadscintilla-mirror-0c4ca75a6eecbfd7dcca835997e0ac1ae61018e9.tar.gz
Fix for comment terminating for ?> in VB ASP.
Diffstat (limited to 'src')
-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: