aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexHTML.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-26 09:38:53 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-26 09:38:53 +1000
commitdf606ba3953ae512aaa2e590bc79f8d796209219 (patch)
treeacf2db266edcdba58623a405fa90e61ca75a8b3e /lexers/LexHTML.cxx
parent0549c6e55e8a0405ec94eaad7f15718b7269975d (diff)
downloadscintilla-mirror-df606ba3953ae512aaa2e590bc79f8d796209219.tar.gz
Avoid a switch fall-through even though it makes no difference to behaviour.
Diffstat (limited to 'lexers/LexHTML.cxx')
-rw-r--r--lexers/LexHTML.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/lexers/LexHTML.cxx b/lexers/LexHTML.cxx
index 826448867..58862b4c8 100644
--- a/lexers/LexHTML.cxx
+++ b/lexers/LexHTML.cxx
@@ -1312,6 +1312,7 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty
styler.ColourTo(i - 2, StateToPrint);
state = SCE_H_SGML_COMMENT;
}
+ break;
case SCE_H_SGML_DOUBLESTRING:
if (ch == '\"') {
styler.ColourTo(i, StateToPrint);