aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-session.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-session.c')
-rw-r--r--src/ephy-session.c6
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);