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
3ff483be
Commit
3ff483be
authored
Jul 08, 2003
by
Kim F. Storm
Browse files
(use_xim) [!USE_XIM]: Default to disable XIM if emacs
was configured with --without-xim.
parent
2e7ecf15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/xterm.c
src/xterm.c
+5
-0
No files found.
src/xterm.c
View file @
3ff483be
...
...
@@ -159,7 +159,12 @@ extern void _XEditResCheckMessages ();
#define abs(x) ((x) < 0 ? -(x) : (x))
/* Default to using XIM if available. */
#ifdef USE_XIM
int use_xim = 1;
#else
int use_xim = 0; /* configure --without-xim */
#endif
/* Non-nil means Emacs uses toolkit scroll bars. */
...
...
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