diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/html.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/html.cc b/src/html.cc index 567324ad..d728713e 100644 --- a/src/html.cc +++ b/src/html.cc @@ -2536,14 +2536,14 @@ static void Html_tag_open_blockquote(DilloHtml *html, */ static void Html_tag_open_q(DilloHtml *html, const char *tag, int tagsize) { - /* - * Left Double Quotation Mark, which is wrong in many cases, but - * should at least be widely recognized. - */ - const char *U201C = "\xe2\x80\x9c"; - - html->styleEngine->inheritBackgroundColor (); - HT2TB(html)->addText (U201C, html->styleEngine->wordStyle ()); + /* + * Left Double Quotation Mark, which is wrong in many cases, but + * should at least be widely recognized. + */ + const char *U201C = "\xe2\x80\x9c"; + + html->styleEngine->inheritBackgroundColor (); + HT2TB(html)->addText (U201C, html->styleEngine->wordStyle ()); } /* |