From 19dce96507fa347922e0dbdb8e84b6bfc069845b Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Mon, 26 Aug 2002 21:22:35 +0000 Subject: [PATCH] Fix a broken error message about the XML declaration. Closes SF bug #596555. --- expat/lib/xmlparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/lib/xmlparse.c b/expat/lib/xmlparse.c index 85b976dd..dc8548d3 100644 --- a/expat/lib/xmlparse.c +++ b/expat/lib/xmlparse.c @@ -1552,7 +1552,7 @@ XML_ErrorString(int code) XML_L("reference to invalid character number"), XML_L("reference to binary entity"), XML_L("reference to external entity in attribute"), - XML_L("xml processing instruction not at start of external entity"), + XML_L("xml declaration not at start of external entity"), XML_L("unknown encoding"), XML_L("encoding specified in XML declaration is incorrect"), XML_L("unclosed CDATA section"),