diff options
author | corvid <corvid@lavabit.com> | 2010-10-21 18:59:40 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2010-10-21 18:59:40 +0000 |
commit | dbd0e11d482699610d08455efe04f28f52d044d1 (patch) | |
tree | 309f474f5ccec7e419a696e8755c1fd5a9f32fd4 /src | |
parent | 90531a3492332a841770ffe32257c97f5531dc0d (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/html.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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<int> *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; } |