Reduced the ErrorContext from 2 to 1. 2 is too much.

git-svn-id: svn://10.0.0.236/trunk@102620 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ian%hixie.ch 2001-09-09 19:48:14 +00:00
parent e4abc2ef8a
commit f2c4a72d49

View File

@ -43,7 +43,7 @@ sub provides {
sub parse {
my $self = shift;
my($string) = @_;
return XML::Parser->new(Style => 'Tree', ErrorContext => 2)->parse($string);
return XML::Parser->new(Style => 'Tree', ErrorContext => 1)->parse($string);
}
sub parseNS {