diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2010-09-06 22:35:14 +0200 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2010-09-06 22:35:14 +0200 |
commit | 97afd4829222030388c1a14a387d29150c5d98a6 (patch) | |
tree | 4aa5ce1b7ec30da24512a5c1d76137bb6407cd71 /src | |
parent | 7212d9a447c7849cdb2730b645182b4037355e94 (diff) |
re-indent Html_tag_open_q() for consistency
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 ()); } /* |