From 243bedc1b28dfe6cdeddf8e807039d96e202ee94 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 23 Apr 2001 10:49:44 +0000 Subject: Fixed bug that treated some operators in ASP VBScript as if they were in client side VBScript. --- src/LexHTML.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LexHTML.cxx') diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index ee0f2be6a..cfcb532b1 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -993,7 +993,7 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty state = SCE_HB_COMMENTLINE; } else if (isoperator(ch)) { styler.ColourTo(i - 1, StateToPrint); - styler.ColourTo(i, SCE_HB_DEFAULT); + styler.ColourTo(i, statePrintForState(SCE_HB_DEFAULT, inScriptType)); state = SCE_HB_DEFAULT; } else if ((ch == ' ') || (ch == '\t')) { if (state == SCE_HB_START) { -- cgit v1.2.3