From 758d5ff035d9c8d6eaa4cf17117d8c23675730a7 Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Wed, 28 Oct 2009 15:15:43 +0000 Subject: Code to save the calendar default view in the configuration file. --- src/io.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index e563d71..059fc6d 100755 --- a/src/io.c +++ b/src/io.c @@ -1,4 +1,4 @@ -/* $calcurse: io.c,v 1.78 2009/08/09 16:00:02 culot Exp $ */ +/* $calcurse: io.c,v 1.79 2009/10/28 15:15:44 culot Exp $ */ /* * Calcurse - text-based organizer @@ -883,6 +883,10 @@ io_save_conf (conf_t *conf) "when saving data will not be displayed\n"); (void)fprintf (fp, "skip_progress_bar=\n"); (void)fprintf (fp, "%s\n", (conf->skip_progress_bar) ? "yes" : "no"); + + (void)fprintf (fp, "\n# Default calendar view (0)monthly (1)weekly:\n"); + (void)fprintf (fp, "calendar_default_view=\n"); + (void)fprintf (fp, "%d\n", calendar_get_view ()); (void)fprintf (fp, "\n# If this option is set to yes, " "monday is the first day of the week, else it is sunday\n"); -- cgit v1.2.3-54-g00ecf