aboutsummaryrefslogtreecommitdiffstats
path: root/search.c
diff options
context:
space:
mode:
authorokan2008-05-19 18:07:53 +0000
committerokan2008-05-19 18:07:53 +0000
commit49f3193bd3ecb3b5e447f9c0b2318069d5945887 (patch)
treefe4527a1e43c90e98c701058c5e7c4019469f9fe /search.c
parent1bbd6697597fd4f837df1a91351cabd390184fa7 (diff)
downloadcwm-49f3193bd3ecb3b5e447f9c0b2318069d5945887.tar.gz
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/search.c b/search.c
index ee6058d..e989f4e 100644
--- a/search.c
+++ b/search.c
@@ -14,7 +14,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: search.c,v 1.9 2008/05/15 22:18:00 oga Exp $
+ * $Id: search.c,v 1.10 2008/05/19 18:07:53 okan Exp $
*/
#include "headers.h"
@@ -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) {