diff options
author | nyamatongwe <unknown> | 2006-12-19 11:51:29 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-12-19 11:51:29 +0000 |
commit | 2671c9d92a04204bbb5f687713794e4a5809cf6c (patch) | |
tree | 1b5dea682a78c9961e628c36b87956690eec2c21 | |
parent | 8b78c030d7ed0cdaa00c1ca4ec6fedf09f901f42 (diff) | |
download | scintilla-mirror-2671c9d92a04204bbb5f687713794e4a5809cf6c.tar.gz |
Fix for comment terminating for ?> in VB ASP.
-rw-r--r-- | src/LexHTML.cxx | 1 |
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: |