Revert "avoid redraw when there's no change"

This reverts commit 6818e07291.

This broke keys such as ^W to delete-backward-word
suckless/develop
Hiltjo Posthuma 3 years ago
parent 6818e07291
commit 31fa07b984

@ -415,8 +415,7 @@ keypress(XKeyEvent *ev)
switch(ksym) { switch(ksym) {
default: default:
insert: insert:
if (iscntrl((unsigned char)*buf)) if (!iscntrl(*buf))
return;
insert(buf, len); insert(buf, len);
break; break;
case XK_Delete: case XK_Delete:

Loading…
Cancel
Save