From dbd0e11d482699610d08455efe04f28f52d044d1 Mon Sep 17 00:00:00 2001 From: corvid Date: Thu, 21 Oct 2010 18:59:40 +0000 Subject: AREA bug msg http://www.weather.gov/ptwc/ doesn't work because it uses real numbers rather than integers for coords. The 4.01 spec doesn't quite _rigorously_ state that real numbers are no good in that case, so far as I can see, but it's pretty clearly the intention -- and html5 _does_ spell this out. --- src/html.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/html.cc b/src/html.cc index 1f69e21e..8019b4ef 100644 --- a/src/html.cc +++ b/src/html.cc @@ -2265,7 +2265,7 @@ misc::SimpleVector *Html_read_coords(DilloHtml *html, const char *str) if (!*newtail) break; if (*newtail != ',') { - BUG_MSG("usemap coords MUST be separated by commas.\n"); + BUG_MSG("area coords must be integers separated by commas.\n"); } tail = newtail + 1; } -- cgit v1.2.3