]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/xterm.c (x_term_init): Fix typo.
authorPo Lu <luangruo@yahoo.com>
Thu, 6 Oct 2022 02:57:43 +0000 (10:57 +0800)
committerPo Lu <luangruo@yahoo.com>
Thu, 6 Oct 2022 02:57:43 +0000 (10:57 +0800)
src/xterm.c

index 37e7916486ea8331a50649956a140f0e5702a707..1d58e80f003333bd2213da369cd24d2dd0c901eb 100644 (file)
@@ -29255,7 +29255,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
   /* Avoid initializing input methods if the X library does not
      support Emacs's locale.  When the current locale is not
      supported, decoding input method strings becomes undefined.  */
-  if (!XSupportsLocale ())
+  if (XSupportsLocale ())
     xim_initialize (dpyinfo, resource_name);
 #endif