mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
changed maintainer-clean dependency with suggestion from Crispin Flowerday
* doc/Makefile.am: changed maintainer-clean dependency with suggestion from Crispin Flowerday (bug #157634) * debugXML.c: fixed crash when ATTRIBUTE or DOCUMENT nodes were specified with debugDumpNode (bug #160621)
This commit is contained in:
parent
91b955c1af
commit
5a9c1fdd40
@ -1,3 +1,10 @@
|
||||
Fri Dec 17 11:40:21 PST 2004 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* doc/Makefile.am: changed maintainer-clean dependency with
|
||||
suggestion from Crispin Flowerday (bug #157634)
|
||||
* debugXML.c: fixed crash when ATTRIBUTE or DOCUMENT nodes
|
||||
were specified with debugDumpNode (bug #160621)
|
||||
|
||||
Fri Dec 10 11:24:41 CET 2004 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* valid.c: fixed ID deallocation problem based on patch from
|
||||
|
@ -894,7 +894,8 @@ xmlCtxtDumpOneNode(xmlDebugCtxtPtr ctxt, xmlNodePtr node)
|
||||
if (!ctxt->check)
|
||||
xmlCtxtDumpSpaces(ctxt);
|
||||
fprintf(ctxt->output, "Error, ATTRIBUTE found here\n");
|
||||
break;
|
||||
xmlCtxtGenericNodeCheck(ctxt, node);
|
||||
return;
|
||||
case XML_TEXT_NODE:
|
||||
if (!ctxt->check) {
|
||||
xmlCtxtDumpSpaces(ctxt);
|
||||
@ -940,8 +941,9 @@ xmlCtxtDumpOneNode(xmlDebugCtxtPtr ctxt, xmlNodePtr node)
|
||||
if (!ctxt->check) {
|
||||
xmlCtxtDumpSpaces(ctxt);
|
||||
}
|
||||
fprintf(ctxt->output, "PBM: DOCUMENT found here\n");
|
||||
break;
|
||||
fprintf(ctxt->output, "Error, DOCUMENT found here\n");
|
||||
xmlCtxtGenericNodeCheck(ctxt, node);
|
||||
return;
|
||||
case XML_DOCUMENT_TYPE_NODE:
|
||||
if (!ctxt->check) {
|
||||
xmlCtxtDumpSpaces(ctxt);
|
||||
|
@ -92,7 +92,7 @@ xmlcatalog.1: xmlcatalog_man.xml
|
||||
clean-local:
|
||||
rm -f *~ *.bak *.hierarchy *.signals *-unused.txt
|
||||
|
||||
maintainer-clean-local: clean
|
||||
maintainer-clean-local: clean-local
|
||||
rm -rf libxml-decl-list.txt libxml-decl.txt
|
||||
|
||||
rebuild: api all
|
||||
|
Loading…
x
Reference in New Issue
Block a user