aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.h
diff options
context:
space:
mode:
authorRichard M. Stallman1996-03-18 03:13:07 +0000
committerRichard M. Stallman1996-03-18 03:13:07 +0000
commitf08fe433e70332c2eba48e7e8043379a0792fef1 (patch)
tree5f9e4f8167345426b5f4a3ab278359400eaf1244 /src/xterm.h
parentf5380d69bc37b8881695e38b4f18b9200edcbbcf (diff)
downloademacs-f08fe433e70332c2eba48e7e8043379a0792fef1.tar.gz
emacs-f08fe433e70332c2eba48e7e8043379a0792fef1.zip
(struct x_output): New member xim.
(FRAME_XIM): New macro.
Diffstat (limited to 'src/xterm.h')
-rw-r--r--src/xterm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xterm.h b/src/xterm.h
index cf3f9105a5b..0f77e4e1141 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -489,6 +489,8 @@ struct x_output
489 char asked_for_visible; 489 char asked_for_visible;
490 490
491#ifdef HAVE_X_I18N 491#ifdef HAVE_X_I18N
492 /* Input method. */
493 XIM xim;
492 /* Input context (currently, this means Compose key handler setup). */ 494 /* Input context (currently, this means Compose key handler setup). */
493 XIC xic; 495 XIC xic;
494#endif 496#endif
@@ -530,6 +532,7 @@ struct x_output
530 532
531#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.x->desired_cursor) 533#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.x->desired_cursor)
532 534
535#define FRAME_XIM(f) ((f)->output_data.x->xim)
533#define FRAME_XIC(f) ((f)->output_data.x->xic) 536#define FRAME_XIC(f) ((f)->output_data.x->xic)
534 537
535/* X-specific scroll bar stuff. */ 538/* X-specific scroll bar stuff. */