From c85c3cce558b32c4fb00a339872d4dbe035d3f6c Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 29 Mar 2012 17:06:56 +0200 Subject: 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 --- src/calcurse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/calcurse.h') diff --git a/src/calcurse.h b/src/calcurse.h index 1c7738a..d77c827 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -233,8 +233,8 @@ struct conf { unsigned periodic_save; unsigned confirm_quit; unsigned confirm_delete; - unsigned skip_system_dialogs; - unsigned skip_progress_bar; + unsigned system_dialogs; + unsigned progress_bar; char *editor; char *pager; char output_datefmt[BUFSIZ]; /* format for displaying date */ -- cgit v1.2.3-54-g00ecf