Increase XmbLookupString buffer

Current buffer is too short to input medium to long sentences from IME.
Input with longer text will show the wrong input, taking 64 instead of
32 bytes should be enough for most of the cases. Broken cases before,

Chinese (taken from song 也可以)
可不可以轻轻的松开自己

Japanese (taken from bootleggers rom quote)
あなたは家のように感じる
This commit is contained in:
Ivan Tham 2020-01-18 15:52:25 +08:00 committed by Hiltjo Posthuma
parent 384830110b
commit 895e5b50a8
1 changed files with 1 additions and 1 deletions

2
x.c
View File

@ -1743,7 +1743,7 @@ kpress(XEvent *ev)
{
XKeyEvent *e = &ev->xkey;
KeySym ksym;
char buf[32], *customkey;
char buf[64], *customkey;
int len;
Rune c;
Status status;