aboutsummaryrefslogtreecommitdiffstats
path: root/src/custom.c
diff options
context:
space:
mode:
authorLars Henriksen <LarsHenriksen@get2net.dk>2017-08-25 10:11:26 +0200
committerLukas Fleischer <lfleischer@calcurse.org>2017-08-28 07:30:38 +0200
commite12875b4201a9acaf7f16f7675449d64479148ec (patch)
tree3ab725eaac8c672186716eac36a7321cc061c48a /src/custom.c
parentbebc46fb63428d17f7b8dce67026f6bb3e92eb58 (diff)
downloadcalcurse-e12875b4201a9acaf7f16f7675449d64479148ec.tar.gz
calcurse-e12875b4201a9acaf7f16f7675449d64479148ec.zip
Remove some leftovers from the past
Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk> Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/custom.c')
-rw-r--r--src/custom.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/custom.c b/src/custom.c
index fd99e25..1fd616c 100644
--- a/src/custom.c
+++ b/src/custom.c
@@ -685,10 +685,6 @@ static int general_option_height(int i, void *cb_data)
static void general_option_edit(int i)
{
- const char *number_str =
- _("Enter an option number to change its value");
- const char *keys =
- _("(Press '^P' or '^N' to move up or down, 'Q' to quit)");
const char *output_datefmt_str =
_("Enter the date format (see 'man 3 strftime' for possible formats) ");
const char *input_datefmt_prefix = _("Enter the date format: ");
@@ -728,7 +724,6 @@ static void general_option_edit(int i)
else if (conf.periodic_save == 0)
io_stop_psave_thread();
}
- status_mesg(number_str, keys);
break;
case CONFIRM_QUIT:
conf.confirm_quit = !conf.confirm_quit;
@@ -753,7 +748,6 @@ static void general_option_edit(int i)
strncpy(conf.output_datefmt, buf,
strlen(buf) + 1);
}
- status_mesg(number_str, keys);
break;
case INPUT_DATE_FMT:
val = status_ask_simplechoice(input_datefmt_prefix,
@@ -768,7 +762,6 @@ static void general_option_edit(int i)
if (updatestring(win[STA].p, &buf, 0, 1) == 0) {
strcpy(conf.day_heading, buf);
}
- status_mesg(number_str, keys);
break;
}