fix: missing else in previous commit
This commit is contained in:
parent
540ccc2b57
commit
a2498e293f
1 changed files with 1 additions and 1 deletions
2
x.c
2
x.c
|
|
@ -3740,7 +3740,7 @@ kpress(XEvent *ev)
|
|||
len = 2;
|
||||
}
|
||||
}
|
||||
if (len > 1 && len != 64 && e->state & Mod1Mask) {
|
||||
else if (len > 1 && len != 64 && e->state & Mod1Mask)
|
||||
// TODO: does this work with MODE_8BIT ?
|
||||
for (int i = len; i != 0; i -= 1)
|
||||
buf[i] = buf[i-1];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue