diff options
author | jkh <jkh@FreeBSD.org> | 1999-12-17 02:44:09 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-12-17 02:44:09 +0000 |
commit | b2296f0762c91f487672db3080e56267b120707f (patch) | |
tree | 9ca711125ecf8572baea98d8bf7ec9fe8ed94d18 /gnu/lib | |
parent | 2c573b325dba12378e61b74596b06085b26dfd69 (diff) | |
download | FreeBSD-src-b2296f0762c91f487672db3080e56267b120707f.zip FreeBSD-src-b2296f0762c91f487672db3080e56267b120707f.tar.gz |
*Really* make space accelerators work; no wonder Brian McGovern was
confused! I fat-fingered the first commit.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libdialog/checklist.c | 2 | ||||
-rw-r--r-- | gnu/lib/libdialog/menubox.c | 2 | ||||
-rw-r--r-- | gnu/lib/libdialog/radiolist.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gnu/lib/libdialog/checklist.c b/gnu/lib/libdialog/checklist.c index 5db04c7..3476f7d 100644 --- a/gnu/lib/libdialog/checklist.c +++ b/gnu/lib/libdialog/checklist.c @@ -255,7 +255,7 @@ draw: /* Check if key pressed matches first character of any item tag in list */ for (i = 0; i < max_choice; i++) - if (isprint(key) && key < 0x100 && toupper(key) == toupper(items[(scroll+i)*3][0])) + if (key != ' ' && key < 0x100 && toupper(key) == toupper(items[(scroll+i)*3][0])) break; if (i < max_choice || (key >= '1' && key <= MIN('9', '0'+max_choice)) || diff --git a/gnu/lib/libdialog/menubox.c b/gnu/lib/libdialog/menubox.c index 77b82ee..061c367 100644 --- a/gnu/lib/libdialog/menubox.c +++ b/gnu/lib/libdialog/menubox.c @@ -233,7 +233,7 @@ draw: /* Check if key pressed matches first character of any item tag in menu */ for (i = 0; i < max_choice; i++) - if (key < 0x100 && isprint(key) && toupper(key) == toupper(items[(scroll + i) * 2][0])) + if (key < 0x100 && key != ' ' && toupper(key) == toupper(items[(scroll + i) * 2][0])) break; if (i < max_choice || (key >= '1' && key <= MIN('9', '0'+max_choice)) || KEY_IS_UP(key) || KEY_IS_DOWN(key)) { diff --git a/gnu/lib/libdialog/radiolist.c b/gnu/lib/libdialog/radiolist.c index c1f5ce6..1dec89e 100644 --- a/gnu/lib/libdialog/radiolist.c +++ b/gnu/lib/libdialog/radiolist.c @@ -265,7 +265,7 @@ draw: /* Check if key pressed matches first character of any item tag in list */ for (i = 0; i < max_choice; i++) - if (isprint(key) && toupper(key) == toupper(items[(scroll + i) * 3][0])) + if (key != ' ' && toupper(key) == toupper(items[(scroll + i) * 3][0])) break; if (i < max_choice || (key >= '1' && key <= MIN('9', '0' + max_choice)) || KEY_IS_UP(key) || KEY_IS_DOWN(key) || key == ' ') { |