aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-02-13 00:59:27 +0800
committerChristian Persch <chpe@src.gnome.org>2004-02-13 00:59:27 +0800
commit45e52c4cdcf6c25815a211a7d48558cb72d0471a (patch)
treeaabfd1651b7093ac946e29c7bf99d9e75ce007d8 /lib
parentbbd519c4867de487e09f8ac5f838a2b150cb75a1 (diff)
downloadgsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar
gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.gz
gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.bz2
gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.lz
gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.xz
gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.tar.zst
gsoc2013-epiphany-45e52c4cdcf6c25815a211a7d48558cb72d0471a.zip
2004-02-12 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): * src/bookmarks/ephy-bookmarks-export.c: (ephy_bookmarks_export_rdf):
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-node-db.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ephy-node-db.c b/lib/ephy-node-db.c
index d7e0d34bc..874b2a30a 100644
--- a/lib/ephy-node-db.c
+++ b/lib/ephy-node-db.c
@@ -413,6 +413,12 @@ ephy_node_db_write_to_xml_valist (EphyNodeDb *db,
return -1;
}
+ ret = xmlTextWriterSetIndent (writer, 1);
+ if (ret < 0) goto out;
+
+ ret = xmlTextWriterSetIndentString (writer, " ");
+ if (ret < 0) goto out;
+
ret = xmlTextWriterStartDocument (writer, "1.0", NULL, NULL);
if (ret < 0) goto out;