aboutsummaryrefslogtreecommitdiff
path: root/src/html.cc
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2014-09-11 00:40:59 +0000
committercorvid <devnull@localhost>2014-09-11 00:40:59 +0000
commitfbfb708322d10598ca0f48ea10f89baff6c6dae3 (patch)
treee72bbd3a2bcd4a0c4892485dcc037301fdfed1e2 /src/html.cc
parentbc04e1f6a84a538e385cb5f8d6422b1a3c490bcb (diff)
bug msg
'' (empty string) resembled " (double quotes) too strongly.
Diffstat (limited to 'src/html.cc')
-rw-r--r--src/html.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc
index 356c6dda..89f9ec70 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -2709,7 +2709,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