aboutsummaryrefslogtreecommitdiff
path: root/x.c
diff options
context:
space:
mode:
authorIvan Tham <pickfire@riseup.net>2020-01-18 15:52:25 +0800
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-01-18 14:21:50 +0100
commit895e5b50a8cc835c19a45e1e328eb4dc78f5fd0c (patch)
treea3b62796bd265d1dab5eda6a8389cd08bf6f74be /x.c
parent384830110bddcebed00b6530a5336f07ad7c405f (diff)
downloadst-patched-895e5b50a8cc835c19a45e1e328eb4dc78f5fd0c.tar.bz2
st-patched-895e5b50a8cc835c19a45e1e328eb4dc78f5fd0c.tar.xz
st-patched-895e5b50a8cc835c19a45e1e328eb4dc78f5fd0c.zip
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) あなたは家のように感じる
Diffstat (limited to 'x.c')
-rw-r--r--x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x.c b/x.c
index bc3ad5a..e000894 100644
--- a/x.c
+++ b/x.c
@@ -1743,7 +1743,7 @@ kpress(XEvent *ev)
1743{ 1743{
1744 XKeyEvent *e = &ev->xkey; 1744 XKeyEvent *e = &ev->xkey;
1745 KeySym ksym; 1745 KeySym ksym;
1746 char buf[32], *customkey; 1746 char buf[64], *customkey;
1747 int len; 1747 int len;
1748 Rune c; 1748 Rune c;
1749 Status status; 1749 Status status;