]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_keyboard): Docstring of
authorKenichi Handa <handa@m17n.org>
Mon, 21 Aug 2006 02:09:31 +0000 (02:09 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 21 Aug 2006 02:09:31 +0000 (02:09 +0000)
Vunread_post_input_method_events and Vunread_input_method_events
fixed.

src/ChangeLog
src/keyboard.c

index b7778885c1303923ead5746a44593911a9fc60db..8308a1ab29d4fcf83dae6ce83347c839b2587b2d 100644 (file)
@@ -1,3 +1,9 @@
+2006-08-21  Kenichi Handa  <handa@m17n.org>
+
+       * keyboard.c (syms_of_keyboard): Docstring of
+       Vunread_post_input_method_events and Vunread_input_method_events
+       fixed.
+
 2006-08-20  Chong Yidong  <cyd@stupidchicken.com>
 
        * keyboard.c (show_help_echo): Preserve mouse movement flag if
index e4c17d5d43f10b7a99379de7408ba41d72de8f41..72e6844d8414e0caeb3b6ee529ee86576e2daea8 100644 (file)
@@ -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,