tsimplification - dmenu - Dmenu fork with xft fonts.
(HTM) git clone git://r-36.net/dmenu
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit f0818217b3d2d0e527f11a5708badf6ddc72e99d
(DIR) parent 3c366bd73d1812845b0afc185ccaba9bbc871854
(HTM) Author: Connor Lane Smith <cls@lubutu.com>
Date: Sat, 11 Sep 2010 19:48:10 +0100
simplification
Diffstat:
dmenu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/dmenu.c b/dmenu.c
t@@ -230,7 +230,7 @@ keypress(XKeyEvent *ev) {
}
switch(ksym) {
default:
- if(!iscntrl(*buf))
+ if(*buf)
insert(buf, strlen(buf));
break;
case XK_Delete: