Applied patch from Darin:

* tree.[ch], .cvsignore: Darin fixed some CPP crap nobody noticed so far
Daniel
This commit is contained in:
Daniel Veillard 2001-03-24 08:43:16 +00:00
parent bc81eb2ee1
commit 2e9f9b2199
5 changed files with 10 additions and 5 deletions

View File

@ -28,3 +28,4 @@ testHTML
testSAX
testXPath
libxml.pc
win32config.h

View File

@ -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

View File

@ -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
View File

@ -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
View File

@ -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 */
/*