From 748726f4d0afd75e639ab15ecef1c8ac62bf93f6 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 21 Aug 2006 02:09:31 +0000 Subject: [PATCH] (syms_of_keyboard): Docstring of Vunread_post_input_method_events and Vunread_input_method_events fixed. --- src/ChangeLog | 6 ++++++ src/keyboard.c | 8 +++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index b7778885c13..8308a1ab29d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2006-08-21 Kenichi Handa + + * keyboard.c (syms_of_keyboard): Docstring of + Vunread_post_input_method_events and Vunread_input_method_events + fixed. + 2006-08-20 Chong Yidong * keyboard.c (show_help_echo): Preserve mouse movement flag if diff --git a/src/keyboard.c b/src/keyboard.c index e4c17d5d43f..72e6844d841 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -11228,14 +11228,16 @@ These events are processed first, before actual keyboard input. */); DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events, doc: /* List of events to be processed as input by input methods. -These events are processed after `unread-command-events', but -before actual keyboard input. */); +These events are processed before `unread-command-events' +and actual keyboard input without given to `input-method-function'. */); Vunread_post_input_method_events = Qnil; DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events, doc: /* List of events to be processed as input by input methods. These events are processed after `unread-command-events', but -before actual keyboard input. */); +before actual keyboard input. +If there's an active input method, the events are given to +`input-method-function'. */); Vunread_input_method_events = Qnil; DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char, -- 2.39.2