diff options
| author | Anselm R.Garbe <[email protected]> | 2006-08-10 10:10:32 +0200 |
|---|---|---|
| committer | Anselm R.Garbe <[email protected]> | 2006-08-10 10:10:32 +0200 |
| commit | 0af369ba65fdcdc40e5c49007c1b19097fba2496 (patch) | |
| tree | 87bb7e0afdf6d5fbcca2a9306e9cbfa040cd62e6 | |
| parent | removed C-[ from source and man page (diff) | |
| download | dmenu-0af369ba65fdcdc40e5c49007c1b19097fba2496.tar.gz dmenu-0af369ba65fdcdc40e5c49007c1b19097fba2496.tar.bz2 dmenu-0af369ba65fdcdc40e5c49007c1b19097fba2496.zip | |
added uppercase chars for C-u and C-h as well
| -rw-r--r-- | main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c index 3458fd5..3b9a24b 100644 --- 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(); |