Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
539465b3
Commit
539465b3
authored
Jul 08, 2003
by
Kim F. Storm
Browse files
(x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
parent
c2d5b10f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/xterm.c
src/xterm.c
+7
-0
No files found.
src/xterm.c
View file @
539465b3
...
...
@@ -10530,10 +10530,17 @@ x_term_init (display_name, xrm_option, resource_name)
build_string ("useXIM"),
build_string ("UseXIM"),
Qnil, Qnil);
#ifdef USE_XIM
if (STRINGP (value)
&& (!strcmp (XSTRING (value)->data, "false")
|| !strcmp (XSTRING (value)->data, "off")))
use_xim = 0;
#else
if (STRINGP (value)
&& (!strcmp (XSTRING (value)->data, "true")
|| !strcmp (XSTRING (value)->data, "on")))
use_xim = 1;
#endif
}
UNBLOCK_INPUT;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment