mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Applied patch from Darin:
* tree.[ch], .cvsignore: Darin fixed some CPP crap nobody noticed so far Daniel
This commit is contained in:
parent
bc81eb2ee1
commit
2e9f9b2199
@ -28,3 +28,4 @@ testHTML
|
||||
testSAX
|
||||
testXPath
|
||||
libxml.pc
|
||||
win32config.h
|
||||
|
@ -1,3 +1,8 @@
|
||||
Sat Mar 24 09:41:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||
|
||||
Applied patch from Darin:
|
||||
* tree.[ch], .cvsignore: Darin fixed some CPP crap nobody noticed so far
|
||||
|
||||
2001-03-24 Martin Baulig <baulig@suse.de>
|
||||
|
||||
* Makefile.am: Added install-data-local target to create the
|
||||
|
@ -479,7 +479,6 @@ void xmlTextConcat (xmlNodePtr node,
|
||||
int len);
|
||||
void xmlFreeNodeList (xmlNodePtr cur);
|
||||
void xmlFreeNode (xmlNodePtr cur);
|
||||
int xmlRemoveProp (xmlAttrPtr cur);
|
||||
|
||||
/*
|
||||
* Namespaces
|
||||
@ -536,7 +535,7 @@ xmlChar * xmlNodeGetBase (xmlDocPtr doc,
|
||||
/*
|
||||
* Removing content.
|
||||
*/
|
||||
int xmlRemoveProp (xmlAttrPtr attr); /* TODO */
|
||||
int xmlRemoveProp (xmlAttrPtr cur);
|
||||
int xmlRemoveNode (xmlNodePtr node); /* TODO */
|
||||
|
||||
/*
|
||||
|
3
tree.c
3
tree.c
@ -266,7 +266,7 @@ xmlSetNs(xmlNodePtr node, xmlNsPtr ns) {
|
||||
if (node == NULL) {
|
||||
#ifdef DEBUG_TREE
|
||||
fprintf(stderr, "xmlSetNs: node == NULL\n");
|
||||
#else
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
node->ns = ns;
|
||||
@ -1064,6 +1064,7 @@ xmlRemoveProp(xmlAttrPtr cur) {
|
||||
return(-1);
|
||||
}
|
||||
if (cur->node == NULL) {
|
||||
#ifdef DEBUG_TREE
|
||||
fprintf(stderr, "xmlRemoveProp : cur->node == NULL\n");
|
||||
#endif
|
||||
return(-1);
|
||||
|
3
tree.h
3
tree.h
@ -479,7 +479,6 @@ void xmlTextConcat (xmlNodePtr node,
|
||||
int len);
|
||||
void xmlFreeNodeList (xmlNodePtr cur);
|
||||
void xmlFreeNode (xmlNodePtr cur);
|
||||
int xmlRemoveProp (xmlAttrPtr cur);
|
||||
|
||||
/*
|
||||
* Namespaces
|
||||
@ -536,7 +535,7 @@ xmlChar * xmlNodeGetBase (xmlDocPtr doc,
|
||||
/*
|
||||
* Removing content.
|
||||
*/
|
||||
int xmlRemoveProp (xmlAttrPtr attr); /* TODO */
|
||||
int xmlRemoveProp (xmlAttrPtr cur);
|
||||
int xmlRemoveNode (xmlNodePtr node); /* TODO */
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user