diff options
author | Po Lu <luangruo@yahoo.com> | 2022-10-06 10:57:43 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-10-06 10:57:43 +0800 |
commit | e2027d60ba6c9a78ef9539234969ef2a44bf84fe (patch) | |
tree | 11295bafa28c72a5978b0d67c756d36b12c3234d /src/xterm.c | |
parent | 8e8d37aa326870ebf0ff6c07b4e37ae6abcf79b6 (diff) | |
download | emacs-e2027d60ba6c9a78ef9539234969ef2a44bf84fe.tar.gz |
; * src/xterm.c (x_term_init): Fix typo.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 37e7916486e..1d58e80f003 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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 |