diff options
author | eric <eric@FreeBSD.org> | 2001-08-09 01:14:09 +0000 |
---|---|---|
committer | eric <eric@FreeBSD.org> | 2001-08-09 01:14:09 +0000 |
commit | 50b51a574f6a7bf8215c4fcef21311db58ebf4c4 (patch) | |
tree | cdff114bef72f5f43cb36bb91ee13c5fcc466705 /gnu/lib/libdialog/notify.c | |
parent | a906539d9eb092ad225bc3491a19811fc201fb2a (diff) | |
download | FreeBSD-src-50b51a574f6a7bf8215c4fcef21311db58ebf4c4.zip FreeBSD-src-50b51a574f6a7bf8215c4fcef21311db58ebf4c4.tar.gz |
Handle keys consistently.
Diffstat (limited to 'gnu/lib/libdialog/notify.c')
-rw-r--r-- | gnu/lib/libdialog/notify.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/lib/libdialog/notify.c b/gnu/lib/libdialog/notify.c index 052ee8f..50bed6b 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); |