diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-13 00:59:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-13 00:59:27 +0800 |
commit | 45e52c4cdcf6c25815a211a7d48558cb72d0471a (patch) | |
tree | aabfd1651b7093ac946e29c7bf99d9e75ce007d8 /src/ephy-session.c | |
parent | bbd519c4867de487e09f8ac5f838a2b150cb75a1 (diff) | |
download | gsoc2013-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 'src/ephy-session.c')
-rw-r--r-- | src/ephy-session.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c index b95754187..96aa5919a 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -524,6 +524,12 @@ ephy_session_save (EphySession *session, return FALSE; } + ret = xmlTextWriterSetIndent (writer, 1); + if (ret < 0) goto out; + + ret = xmlTextWriterSetIndentString (writer, " "); + if (ret < 0) goto out; + START_PROFILER ("Saving session") ret = xmlTextWriterStartDocument (writer, "1.0", NULL, NULL); |