]> granicus.if.org Git - libexpat/commitdiff
Defined XML_SetEndNamespaceDeclHandler to resolve bug # 116381
authorClark Cooper <coopercc@users.sourceforge.net>
Tue, 10 Oct 2000 18:48:48 +0000 (18:48 +0000)
committerClark Cooper <coopercc@users.sourceforge.net>
Tue, 10 Oct 2000 18:48:48 +0000 (18:48 +0000)
expat/Changes
expat/lib/xmlparse.c

index aec6a2bf6cbbe64bb01a1e78c67dd87d77891ef7..e32e2989a3a884ea30592a8c90161b228ba36cb6 100644 (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
index 5395b487bc5950a736d078d9cb11d731d2a9824e..56f5ab727cef9bd6e92ce721b23c40c89ace1627 100644 (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,