diff options
author | nyamatongwe <unknown> | 2007-10-15 11:38:02 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-10-15 11:38:02 +0000 |
commit | 375df043631562dc691a30ff6a937202feacf937 (patch) | |
tree | d6bc483fdb881ec0b18c41670f18e71177d1b033 /src/LexHTML.cxx | |
parent | 36b586e7dfc2b782f89ff9e73e1a48ccd94af033 (diff) | |
download | scintilla-mirror-375df043631562dc691a30ff6a937202feacf937.tar.gz |
Patch from Iago Rubio to allow </ inside a VB comment within HTML.
Diffstat (limited to 'src/LexHTML.cxx')
-rw-r--r-- | src/LexHTML.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index c9ef389de..3db89e2f6 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -676,10 +676,13 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty case SCE_HJ_COMMENTDOC: //case SCE_HJ_COMMENTLINE: // removed as this is a common thing done to hide // the end of script marker from some JS interpreters. + case SCE_HB_COMMENTLINE: + case SCE_HBA_COMMENTLINE: case SCE_HJ_DOUBLESTRING: case SCE_HJ_SINGLESTRING: case SCE_HJ_REGEX: case SCE_HB_STRING: + case SCE_HBA_STRING: case SCE_HP_STRING: case SCE_HP_TRIPLE: case SCE_HP_TRIPLEDOUBLE: |