From 1c442e6aefd8855cdeec776b0e4e604edf585884 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 6 Apr 2012 23:21:18 +0200 Subject: Miscellaneous small code cleanups Signed-off-by: Lukas Fleischer --- src/utils.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 3ee24e0..73c1eea 100644 --- a/src/utils.c +++ b/src/utils.c @@ -160,15 +160,22 @@ warnbox (const char *msg) * Message texts for first line and second line are to be provided. */ void -status_mesg (const char *mesg_line1, const char *mesg_line2) +status_mesg (const char *msg1, const char *msg2) { wins_erase_status_bar (); custom_apply_attr (win[STA].p, ATTR_HIGHEST); - mvwprintw (win[STA].p, 0, 0, mesg_line1); - mvwprintw (win[STA].p, 1, 0, mesg_line2); + mvwprintw (win[STA].p, 0, 0, msg1); + mvwprintw (win[STA].p, 1, 0, msg2); custom_remove_attr (win[STA].p, ATTR_HIGHEST); } +/* Print a status message, followed by a "[y/n]" prompt. */ +void +status_mesg_yesno (const char *msg) +{ + status_mesg (msg, "[y/n] "); +} + /* Erase part of a window. */ void erase_window_part (WINDOW *win, int first_col, int first_row, int last_col, -- cgit v1.2.3-54-g00ecf