1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

fixes #102920 about namespace handling in HTML output and section 16.2

* HTMLtree.c tree.c: fixes #102920 about namespace handling in
  HTML output and section 16.2 "HTML Output Method" of XSLT-1.0
* README: fixed a link
Daniel
This commit is contained in:
Daniel Veillard
2003-01-09 13:19:33 +00:00
parent e2830f1e65
commit 5ecaf7f9a7
4 changed files with 25 additions and 3 deletions

4
tree.c
View File

@ -6322,6 +6322,8 @@ static void
xmlNodeDumpOutputInternal(xmlOutputBufferPtr buf, xmlDocPtr doc,
xmlNodePtr cur, int level, int format, const char *encoding);
void xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
/**
* xmlNsDumpOutput:
* @buf: the XML buffer output
@ -6362,7 +6364,7 @@ xmlNsDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) {
* Dump a list of local Namespace definitions.
* Should be called in the context of attributes dumps.
*/
static void
void
xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) {
while (cur != NULL) {
xmlNsDumpOutput(buf, cur);