(use_xim) [!USE_XIM]: Default to disable XIM if emacs
was configured with --without-xim.
This commit is contained in:
parent
2e7ecf1520
commit
3ff483be33
1 changed files with 5 additions and 0 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue