expat/lib expat.h, 1.75, 1.76 xmlparse.c, 1.144, 1.145
"Fred L. Drake" <[email protected]> Fri, 28 Jan 2005 20:48:47 -0800
| Newsgroups | gmane.text.xml.expat.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/expat/expat/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25718/lib
Modified Files:
expat.h xmlparse.c
Log Message:
Report XML_NS setting via XML_GetFeatureList().
Index: expat.h
===================================================================
RCS file: /cvsroot/expat/expat/lib/expat.h,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- expat.h 24 Dec 2004 18:00:28 -0000 1.75
+++ expat.h 29 Jan 2005 04:48:43 -0000 1.76
@@ -982,7 +982,8 @@
XML_FEATURE_CONTEXT_BYTES,
XML_FEATURE_MIN_SIZE,
XML_FEATURE_SIZEOF_XML_CHAR,
- XML_FEATURE_SIZEOF_XML_LCHAR
+ XML_FEATURE_SIZEOF_XML_LCHAR,
+ XML_FEATURE_NS
/* Additional features must be added to the end of this enum. */
};
Index: xmlparse.c
===================================================================
RCS file: /cvsroot/expat/expat/lib/xmlparse.c,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -d -r1.144 -r1.145
--- xmlparse.c 29 Jan 2005 02:28:33 -0000 1.144
+++ xmlparse.c 29 Jan 2005 04:48:44 -0000 1.145
@@ -1943,6 +1943,9 @@
#ifdef XML_MIN_SIZE
{XML_FEATURE_MIN_SIZE, XML_L("XML_MIN_SIZE"), 0},
#endif
+#ifdef XML_NS
+ {XML_FEATURE_NS, XML_L("XML_NS"), 0},
+#endif
{XML_FEATURE_END, NULL, 0}
};