diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-09-01 16:09:18 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-05 12:25:48 +0200 |
commit | 711d5dea20679298192b25a5bbfe4fd70d9012d6 (patch) | |
tree | 5658afd871b31d0fbc3a61d2395cde782ba96a99 /src/vars.c | |
parent | 8d71923d4f498c8d2fcb22a72346e3e77a7c4a5b (diff) | |
download | calcurse-711d5dea20679298192b25a5bbfe4fd70d9012d6.zip |
Add configuration option to run the GC on exit
If "auto_gc" is enabled, the garbage collector for note files will be
run on every exit. As this is an experimental feature and may cause data
loss, this is disabled by default.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/vars.c')
-rw-r--r-- | src/vars.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -125,6 +125,7 @@ vars_init (struct conf *conf) conf->confirm_quit = 1; conf->confirm_delete = 1; conf->auto_save = 1; + conf->auto_gc = 0; conf->periodic_save = 0; conf->skip_system_dialogs = 0; conf->skip_progress_bar = 0; |