Defined XML_SetEndNamespaceDeclHandler to resolve bug # 116381

This commit is contained in:
Clark Cooper 2000-10-10 18:48:48 +00:00
parent 219c9e2de6
commit c4ca6cf75e
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,8 @@
- Defined XML_SetEndNamespaceDeclHandler. Thanks to Darryl Miles for
finding this oversight.
- Changed default patterns in lib/Makefile.in to fit non-GNU makes
Thanks to robin@unrated.net for reporting and providing an
account to test on.
- The reference had the wrong label for XML_SetStartNamespaceDecl.
Reported by an anonymous user.
Release 1.95.0 Fri Sep 29 2000

View File

@ -4,7 +4,7 @@ See the file COPYING for copying permission.
*/
static char RCSId[]
= "$Header: /cvsroot/expat/expat/lib/xmlparse.c,v 1.6 2000/09/29 14:57:45 coopercc Exp $";
= "$Header: /cvsroot/expat/expat/lib/xmlparse.c,v 1.7 2000/10/09 06:26:10 jclark Exp $";
#include <config.h>
@ -999,7 +999,9 @@ void XML_SetStartNamespaceDeclHandler(XML_Parser parser,
}
void XML_SetEndNamespaceDeclHandler(XML_Parser parser,
XML_EndNamespaceDeclHandler end);
XML_EndNamespaceDeclHandler end) {
endNamespaceDeclHandler = end;
}
void XML_SetNotStandaloneHandler(XML_Parser parser,