diff options
author | nyamatongwe <devnull@localhost> | 2007-10-15 11:38:02 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-10-15 11:38:02 +0000 |
commit | 0127852a8ab813149d9bf4c2643d00c3cd857a4e (patch) | |
tree | d6bc483fdb881ec0b18c41670f18e71177d1b033 /src | |
parent | f8453890acd38f68249965fe05a4392b69b986e5 (diff) | |
download | scintilla-mirror-0127852a8ab813149d9bf4c2643d00c3cd857a4e.tar.gz |
Patch from Iago Rubio to allow </ inside a VB comment within HTML.
Diffstat (limited to 'src')
-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: |