diff options
| author | Eric Melville <eric@FreeBSD.org> | 2001-08-09 01:14:09 +0000 |
|---|---|---|
| committer | Eric Melville <eric@FreeBSD.org> | 2001-08-09 01:14:09 +0000 |
| commit | eb84be870e52321cf9ea55ad5c8272e739460967 (patch) | |
| tree | cdff114bef72f5f43cb36bb91ee13c5fcc466705 | |
| parent | 1d0372b2af0584a2244566b5cad84c27a80bf8c0 (diff) | |
Notes
| -rw-r--r-- | gnu/lib/libdialog/msgbox.c | 6 | ||||
| -rw-r--r-- | gnu/lib/libdialog/notify.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gnu/lib/libdialog/msgbox.c b/gnu/lib/libdialog/msgbox.c index a544652a356c..ac0e7e6fd4bc 100644 --- a/gnu/lib/libdialog/msgbox.c +++ b/gnu/lib/libdialog/msgbox.c @@ -18,6 +18,10 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <dialog.h> #include "dialog.priv.h" @@ -182,7 +186,7 @@ dialog_mesgbox(unsigned char *title, unsigned char *prompt, int height, int widt print_perc(dialog, height-3, width-9, (float) (startline+theight)/max_lines); wmove(dialog, height-2, width/2-3); wrefresh(dialog); - while ((key != ESC) && (key != '\n') && (key != '\r')) { + while ((key != ESC) && (key != '\n') && (key != '\r') && (key != ' ')) { key = wgetch(dialog); switch(key) { case KEY_HOME: diff --git a/gnu/lib/libdialog/notify.c b/gnu/lib/libdialog/notify.c index 052ee8f27528..50bed6b2dac4 100644 --- a/gnu/lib/libdialog/notify.c +++ b/gnu/lib/libdialog/notify.c @@ -17,6 +17,10 @@ * */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif #include <dialog.h> #include <stdio.h> @@ -37,7 +41,7 @@ dialog_notify(char *msg) exit(1); } tmphlp = get_helpline(); - use_helpline("Press enter to continue"); + use_helpline("Press enter or space"); dialog_mesgbox("Message", msg, -1, -1); restore_helpline(tmphlp); touchwin(w); |
