From 45e52c4cdcf6c25815a211a7d48558cb72d0471a Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 12 Feb 2004 16:59:27 +0000 Subject: 2004-02-12 Christian Persch * lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): * src/bookmarks/ephy-bookmarks-export.c: (ephy_bookmarks_export_rdf): --- src/bookmarks/ephy-bookmarks-export.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/bookmarks') diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c index f035e8fbb..bd3b3db55 100644 --- a/src/bookmarks/ephy-bookmarks-export.c +++ b/src/bookmarks/ephy-bookmarks-export.c @@ -100,6 +100,12 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks, return; } + 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; -- cgit v1.2.3