- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 27 Sep 2009 18:30:13 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin
In directory hutz:/tmp/cvs-serv30345
Modified Files:
check
Log Message:
Fix off by one column error in display of OpenSP's auxiliary message locations.
Index: check
===================================================================
RCS file: /sources/public/validator/httpd/cgi-bin/check,v
retrieving revision 1.704
retrieving revision 1.705
diff -u -d -r1.704 -r1.705
--- check 23 Sep 2009 21:27:32 -0000 1.704
+++ check 27 Sep 2009 18:30:11 -0000 1.705
@@ -3198,7 +3198,7 @@
{
# "duplicate id ... first defined here" style messages
push @{$File->{Errors}}, { line => $mess->{aux_message}{LineNumber},
- char => $mess->{aux_message}{ColumnNumber},
+ char => $mess->{aux_message}{ColumnNumber}+1,
msg => $mess->{aux_message}{Text},
type => 'I',
};
Received on Sunday, 27 September 2009 18:42:14 UTC