mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-08-08 17:42:14 +03:00
patch from Oleg Paraschenko to fix xmlDebugDumpNode() when handled a
* debugXML.c: patch from Oleg Paraschenko to fix xmlDebugDumpNode() when handled a namespace node. Daniel
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Wed Sep 7 00:16:27 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* debugXML.c: patch from Oleg Paraschenko to fix xmlDebugDumpNode()
|
||||||
|
when handled a namespace node.
|
||||||
|
|
||||||
Sun Sep 4 23:36:45 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
Sun Sep 4 23:36:45 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* NEWS elfgcchack.h testapi.c doc/*: updated the docs and rebuild
|
* NEWS elfgcchack.h testapi.c doc/*: updated the docs and rebuild
|
||||||
|
@@ -1065,7 +1065,8 @@ xmlCtxtDumpNode(xmlDebugCtxtPtr ctxt, xmlNodePtr node)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
xmlCtxtDumpOneNode(ctxt, node);
|
xmlCtxtDumpOneNode(ctxt, node);
|
||||||
if ((node->children != NULL) && (node->type != XML_ENTITY_REF_NODE)) {
|
if ((node->type != XML_NAMESPACE_DECL) &&
|
||||||
|
(node->children != NULL) && (node->type != XML_ENTITY_REF_NODE)) {
|
||||||
ctxt->depth++;
|
ctxt->depth++;
|
||||||
xmlCtxtDumpNodeList(ctxt, node->children);
|
xmlCtxtDumpNodeList(ctxt, node->children);
|
||||||
ctxt->depth--;
|
ctxt->depth--;
|
||||||
|
Reference in New Issue
Block a user