diff options
author | jkh <jkh@FreeBSD.org> | 1995-10-06 11:14:43 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-10-06 11:14:43 +0000 |
commit | 3440967abc8dcb48accb89368e9e1ff3cb3114d8 (patch) | |
tree | 3225e5d47feb24ddb524cc15d215a2f478192407 /usr.sbin | |
parent | f449f1529fe442de56f3bc5a2b29d52cc7c6c9ae (diff) | |
download | FreeBSD-src-3440967abc8dcb48accb89368e9e1ff3cb3114d8.zip FreeBSD-src-3440967abc8dcb48accb89368e9e1ff3cb3114d8.tar.gz |
Properly repaint an option in reverse video after changing its value.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sysinstall/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/options.c b/usr.sbin/sysinstall/options.c index 5009d86..e4b241e 100644 --- a/usr.sbin/sysinstall/options.c +++ b/usr.sbin/sysinstall/options.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated for what's essentially a complete rewrite. * - * $Id: options.c,v 1.3 1995/10/04 12:08:21 jkh Exp $ + * $Id: options.c,v 1.4 1995/10/06 08:47:40 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -258,6 +258,7 @@ optionsEditor(char *str) case ' ': case '\n': fire(Options[currOpt]); + clear(); continue; case 'Q': |