diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-03-18 03:13:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-03-18 03:13:07 +0000 |
commit | f08fe433e70332c2eba48e7e8043379a0792fef1 (patch) | |
tree | 5f9e4f8167345426b5f4a3ab278359400eaf1244 /src/xterm.h | |
parent | f5380d69bc37b8881695e38b4f18b9200edcbbcf (diff) | |
download | emacs-f08fe433e70332c2eba48e7e8043379a0792fef1.tar.gz |
(struct x_output): New member xim.
(FRAME_XIM): New macro.
Diffstat (limited to 'src/xterm.h')
-rw-r--r-- | src/xterm.h | 3 |
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 char asked_for_visible; #ifdef HAVE_X_I18N + /* Input method. */ + XIM xim; /* Input context (currently, this means Compose key handler setup). */ XIC xic; #endif @@ -530,6 +532,7 @@ struct x_output #define FRAME_DESIRED_CURSOR(f) ((f)->output_data.x->desired_cursor) +#define FRAME_XIM(f) ((f)->output_data.x->xim) #define FRAME_XIC(f) ((f)->output_data.x->xic) /* X-specific scroll bar stuff. */ |