diff options
| author | 2010-04-13 20:14:45 +0000 | |
|---|---|---|
| committer | 2010-04-13 20:14:45 +0000 | |
| commit | 09db46f54fa671728498e14e8711b20301b266b7 (patch) | |
| tree | 1e82873bcf2c15399469272b66f7887b77934988 /dmenu.c | |
| parent | fixed 3 bugs and some inconsistency (diff) | |
fixed ^U cursor support
Diffstat (limited to 'dmenu.c')
| -rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -414,8 +414,8 @@ kpress(XKeyEvent * e) { break; case XK_u: case XK_U: + memmove(text, text + cursor, sizeof text - cursor + 1); cursor = 0; - text[0] = '\0'; match(text); break; case XK_w: |
