From f2c4a72d49be43e05efd52cd01f77caa8a6eb120 Mon Sep 17 00:00:00 2001 From: "ian%hixie.ch" Date: Sun, 9 Sep 2001 19:48:14 +0000 Subject: [PATCH] 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 --- mozilla/webtools/PLIF/PLIF/Service/XML.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/PLIF/PLIF/Service/XML.pm b/mozilla/webtools/PLIF/PLIF/Service/XML.pm index 6a1efd58697..798f5e654ed 100644 --- a/mozilla/webtools/PLIF/PLIF/Service/XML.pm +++ b/mozilla/webtools/PLIF/PLIF/Service/XML.pm @@ -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 {