mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fix comment for xmlDocSetRootElement c.f. #351981 order XPath elements
* tree.c: fix comment for xmlDocSetRootElement c.f. #351981 * xmllint.c: order XPath elements when using --shell Daniel
This commit is contained in:
parent
777737ea02
commit
26a45c815a
@ -1,3 +1,8 @@
|
||||
Fri Oct 20 14:55:47 CEST 2006 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* tree.c: fix comment for xmlDocSetRootElement c.f. #351981
|
||||
* xmllint.c: order XPath elements when using --shell
|
||||
|
||||
Tue Oct 17 23:23:26 CEST 2006 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlregexp.c: applied fix from Christopher Boumenot for bug
|
||||
|
5
tree.c
5
tree.c
@ -4534,12 +4534,13 @@ xmlDocGetRootElement(xmlDocPtr doc) {
|
||||
/**
|
||||
* xmlDocSetRootElement:
|
||||
* @doc: the document
|
||||
* @root: the new document root element
|
||||
* @root: the new document root element, if root is NULL no action is taken,
|
||||
* to remove a node from a document use xmlUnlinkNode(root) instead.
|
||||
*
|
||||
* Set the root element of the document (doc->children is a list
|
||||
* containing possibly comments, PIs, etc ...).
|
||||
*
|
||||
* Returns the old root element if any was found
|
||||
* Returns the old root element if any was found, NULL if root was NULL
|
||||
*/
|
||||
xmlNodePtr
|
||||
xmlDocSetRootElement(xmlDocPtr doc, xmlNodePtr root) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user