diff options
author | ville <ville@localhost> | 2010-06-13 21:47:08 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2010-06-13 21:47:08 +0000 |
commit | 5679d2cea6e700afb4f6f8bb873d784237c55e61 (patch) | |
tree | 69b2277c9ccac10f4dc149a224f3039848802679 | |
parent | d0b215afb86f2352523062bec5db14c4f67bf100 (diff) | |
download | markup-validator-5679d2cea6e700afb4f6f8bb873d784237c55e61.zip markup-validator-5679d2cea6e700afb4f6f8bb873d784237c55e61.tar.gz markup-validator-5679d2cea6e700afb4f6f8bb873d784237c55e61.tar.bz2 |
Drop unused variable.
-rwxr-xr-x | httpd/cgi-bin/check | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 9208ef2..53a7897 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.779 2010-06-13 21:45:40 ville Exp $ +# $Id: check,v 1.780 2010-06-13 21:47:08 ville Exp $ # # We need Perl 5.8.0+. @@ -192,7 +192,7 @@ EOF # # Strings - $VERSION = q$Revision: 1.779 $; + $VERSION = q$Revision: 1.780 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # Read friendly error message file @@ -659,8 +659,7 @@ if (&is_xml($File)) { # handle a structured error (XML::LibXML::Error object) - my $err_obj = $@; - my $num_xmlwf_error = 0; + my $err_obj = $@; while ($err_obj) { my $err; $err->{src} = '...'; # do this with show_open_entities()? @@ -683,7 +682,6 @@ if (&is_xml($File)) { } unshift(@xmlwf_error_list, $err); - $num_xmlwf_error++; } } elsif ($@) { @@ -693,7 +691,6 @@ if (&is_xml($File)) { my $xmlwf_error_msg = undef; my $got_error_message = undef; my $got_quoted_line = undef; - my $num_xmlwf_error = 0; foreach my $msg_line (split "\n", $xmlwf_errors) { $msg_line =~ s{[^\x0d\x0a](:\d+:)}{\n$1}g; @@ -787,8 +784,6 @@ if (&is_xml($File)) { $xmlwf_error_line = undef; $xmlwf_error_col = undef; $xmlwf_error_msg = undef; - $num_xmlwf_error++; - } } } |