Browse Source

fix crash with ctrl-enter as input

reproduce: ./dmenu; send EOF; press ctrl+enter.
master
Hiltjo Posthuma 10 years ago
committed by sin
parent
commit
aa69426670
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      dmenu.c

+ 2
- 1
dmenu.c View File

@@ -370,7 +370,8 @@ keypress(XKeyEvent *ev) {
puts((sel && !(ev->state & ShiftMask)) ? sel->text : text);
if(!(ev->state & ControlMask))
exit(EXIT_SUCCESS);
sel->out = True;
if(sel)
sel->out = True;
break;
case XK_Right:
if(text[cursor] != '\0') {


Loading…
Cancel
Save