aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/LexInno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LexInno.cxx b/src/LexInno.cxx
index ff99da7e4..5985df23d 100644
--- a/src/LexInno.cxx
+++ b/src/LexInno.cxx
@@ -172,14 +172,14 @@ static void ColouriseInnoDoc(unsigned int startPos, int length, int, WordList *k
case SCE_INNO_STRING_DOUBLE:
if (ch == '"' || isEOL) {
state = SCE_INNO_DEFAULT;
- styler.ColourTo(i,SCE_INNO_DEFAULT);
+ styler.ColourTo(i,SCE_INNO_STRING_DOUBLE);
}
break;
case SCE_INNO_STRING_SINGLE:
if (ch == '\'' || isEOL) {
state = SCE_INNO_DEFAULT;
- styler.ColourTo(i,SCE_INNO_DEFAULT);
+ styler.ColourTo(i,SCE_INNO_STRING_SINGLE);
}
break;