diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-06-19 09:18:17 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-06-19 09:18:17 +0100 |
commit | 3f244b1d52d5409776467704ca95d561cdab78e9 (patch) | |
tree | a0d45890488c3d0c41092ad96db74cc6f34e99fc /dmenu.c | |
parent | a6945d509456e64ff0b011c691f9e186240685b6 (diff) |
minor fix
Diffstat (limited to 'dmenu.c')
-rw-r--r-- | dmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -477,11 +477,11 @@ kpress(XKeyEvent * e) { calcoffsets(); break; case XK_Return: - if((e->state & ShiftMask) && text) + if((e->state & ShiftMask) && *text) fprintf(stdout, "%s", text); else if(sel) fprintf(stdout, "%s", sel->text); - else if(text) + else if(*text) fprintf(stdout, "%s", text); fflush(stdout); running = False; |