changeset 72463:c1f4fd769a94

(syms_of_keyboard): Docstring of Vunread_post_input_method_events and Vunread_input_method_events fixed.
author Kenichi Handa <handa@m17n.org>
date Mon, 21 Aug 2006 02:07:09 +0000
parents bacf0e610ccc
children 86a7beb48bf7
files src/keyboard.c
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Sun Aug 20 20:57:26 2006 +0000
+++ b/src/keyboard.c	Mon Aug 21 02:07:09 2006 +0000
@@ -11228,14 +11228,16 @@
 
   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,