diff options
author | Neil <nyamatongwe@gmail.com> | 2013-07-26 09:38:53 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-07-26 09:38:53 +1000 |
commit | df606ba3953ae512aaa2e590bc79f8d796209219 (patch) | |
tree | acf2db266edcdba58623a405fa90e61ca75a8b3e /lexers/LexHTML.cxx | |
parent | 0549c6e55e8a0405ec94eaad7f15718b7269975d (diff) | |
download | scintilla-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.cxx | 1 |
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); |