From: Po Lu Date: Sat, 22 Jan 2022 08:16:26 +0000 (+0800) Subject: Use locale coding system to decode XIM preedit text X-Git-Tag: emacs-29.0.90~2874 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b72558527fd2f31274f665244ad84fe90a19bd5;p=emacs.git Use locale coding system to decode XIM preedit text * src/xfns.c (x_xim_text_to_utf8_unix): XIMs typically return text in the locale coding system, so use that instead. --- diff --git a/src/xfns.c b/src/xfns.c index a1435d53513..7123198724a 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -3051,7 +3051,7 @@ x_xim_text_to_utf8_unix (XIMText *text, ptrdiff_t *length) } nbytes = strlen (text->string.multi_byte); - setup_coding_system (Qutf_8_unix, &coding); + setup_coding_system (Vlocale_coding_system, &coding); coding.mode |= (CODING_MODE_LAST_BLOCK | CODING_MODE_SAFE_ENCODING); coding.source = (const unsigned char *) text->string.multi_byte;