diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-12-09 20:48:39 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-12-09 20:54:20 +0100 |
commit | 093b28ac398ffdc2733bc6f42fa58d2153576ad9 (patch) | |
tree | df01b2cf12579376fea9b84a8f0e0ccba1f708e8 /src/calcurse.c | |
parent | ef716e4a9267008061f1e6469182a4daaec1c05f (diff) | |
download | calcurse-093b28ac398ffdc2733bc6f42fa58d2153576ad9.zip |
Extract config file handlers into a separate file
We used custom_load_conf() to load the configuration file and
io_save_conf() to save configuration. Move these functions, including
all helpers, to a central location.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.c')
-rw-r--r-- | src/calcurse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 35a1fa5..756a79f 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -158,7 +158,7 @@ main (int argc, char **argv) * configuration (the display is then updated), and then * the todo list, appointments and events. */ - custom_load_conf (); + config_load (); wins_erase_status_bar (); io_load_keys (conf.pager); io_load_todo (); |