Revert "avoid redraw when there's no change"

This reverts commit 6818e07291.

This broke keys such as ^W to delete-backward-word
This commit is contained in:
Hiltjo Posthuma 2022-03-26 17:57:50 +01:00
parent 6818e07291
commit 31fa07b984
1 changed files with 2 additions and 3 deletions

View File

@ -415,9 +415,8 @@ 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:
case XK_KP_Delete: case XK_KP_Delete: