pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4fbc43
)
added uppercase chars for C-u and C-h as well
author
Anselm R.Garbe
<arg@10ksloc.org>
Thu, 10 Aug 2006 08:10:32 +0000
(10:10 +0200)
committer
Anselm R.Garbe
<arg@10ksloc.org>
Thu, 10 Aug 2006 08:10:32 +0000
(10:10 +0200)
main.c
patch
|
blob
|
history
diff --git
a/main.c
b/main.c
index
3458fd5
..
3b9a24b
100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-172,9
+172,11
@@
kpress(XKeyEvent * e)
return;
break;
case XK_h:
+ case XK_H:
ksym = XK_BackSpace;
break;
case XK_u:
+ case XK_U:
text[0] = 0;
match(text);
drawmenu();