diff options
author | corvid <devnull@localhost> | 2014-09-11 00:40:59 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-09-11 00:40:59 +0000 |
commit | 123870924310f7f873bcc3c7e43c583c89668d01 (patch) | |
tree | 2986579bc88e9cb2b4544d2271c254ead65813c4 /src | |
parent | 8b8a3f9fbbb3ccf4ee6bbf81672bc34820b9247b (diff) |
bug msg
'' (empty string) resembled " (double quotes) too strongly.
Diffstat (limited to 'src')
-rw-r--r-- | src/html.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc index 3abc338f..8a4bad92 100644 --- a/src/html.cc +++ b/src/html.cc @@ -2702,7 +2702,8 @@ static void Html_add_anchor(DilloHtml *html, const char *name) { _MSG("Registering ANCHOR: %s\n", name); if (!HT2TB(html)->addAnchor (name, html->style ())) - BUG_MSG("Anchor names must be unique within the document ('%s').", name); + BUG_MSG("Anchor names must be unique within the document (\"%s\").", + name); /* * According to Sec. 12.2.1 of the HTML 4.01 spec, "anchor names that * differ only in case may not appear in the same document", but |