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 | 53912cc1a9da27e6ee9a2528645f68a2081160e8 (patch) | |
tree | bfeb1bb0e11b167f42f893326193ff7544306071 | |
parent | 74c84662195aafc20b7e65d59d5c2881a9c2687e (diff) | |
download | scintilla-mirror-53912cc1a9da27e6ee9a2528645f68a2081160e8.tar.gz |
Avoid a switch fall-through even though it makes no difference to behaviour.
-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); |