diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-03-29 17:06:56 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-03-29 17:06:56 +0200 |
commit | c85c3cce558b32c4fb00a339872d4dbe035d3f6c (patch) | |
tree | a1f854cda63db04b189a95221d08549ff6dcf487 /src/calcurse.c | |
parent | 8916293a26e7a79e3bf969aac9895b2678946deb (diff) | |
download | calcurse-c85c3cce558b32c4fb00a339872d4dbe035d3f6c.zip |
Fix semantics of "general."{systemdialogs,progressbar}
These were renamed from "skip_"* to *. However, we only changed syntax
and didn't invert their semantic meaning. Fix this by negating the
semantics of those variables. Also, negate these in the configuration
file automatically when running `calcurse-upgrade`.
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 c1949d4..ca239fb 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -164,7 +164,7 @@ main (int argc, char **argv) if (notify_bar ()) notify_start_main_thread (); wins_update (FLAG_ALL); - io_startup_screen (conf.skip_system_dialogs, no_data_file); + io_startup_screen (conf.system_dialogs, no_data_file); inday = *day_process_storage (0, 0, &inday); wins_slctd_set (CAL); wins_update (FLAG_ALL); |