diff options
author | okan <okan> | 2008-05-19 18:07:53 +0000 |
---|---|---|
committer | okan <okan> | 2008-05-19 18:07:53 +0000 |
commit | 53116c4ec3792901d7ac774199963d915ea0da5a (patch) | |
tree | 150e382a194b6cc4a6b809a45bd808a0d4a5c75b /search.c | |
parent | 981c2480dbeba34162711766a3b258421fe88ff8 (diff) | |
download | cwm-53116c4ec3792901d7ac774199963d915ea0da5a.tar.gz cwm-53116c4ec3792901d7ac774199963d915ea0da5a.tar.xz cwm-53116c4ec3792901d7ac774199963d915ea0da5a.zip |
stop normalizing search input; searching and matching are still
case-insensitive. since this was the only use of normalizing input, simplify as well. allows one to exec with mixed case unmatched commands. "works for me" oga@
Diffstat (limited to 'search.c')
-rw-r--r-- | search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/search.c b/search.c index d507fbf..15e7e64 100644 --- a/search.c +++ b/search.c @@ -104,7 +104,7 @@ search_start(struct menu_q *menuq, switch (e.type) { case KeyPress: if (input_keycodetrans(e.xkey.keycode, e.xkey.state, - &ctl, &chr, 1) < 0) + &ctl, &chr) < 0) continue; switch (ctl) { |