]> git.eshelyaron.com Git - emacs.git/commitdiff
Use locale coding system to decode XIM preedit text
authorPo Lu <luangruo@yahoo.com>
Sat, 22 Jan 2022 08:16:26 +0000 (16:16 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 22 Jan 2022 08:16:26 +0000 (16:16 +0800)
* src/xfns.c (x_xim_text_to_utf8_unix): XIMs typically return
text in the locale coding system, so use that instead.

src/xfns.c

index a1435d5351329f34989deca569af4d32ae63d9e5..7123198724a237f52c759d002db1944e1b8ce37b 100644 (file)
@@ -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;