Mercurial > emacs
diff src/keyboard.c @ 72790:16c08056334a
(Finput_pending_p): Check Vunread_input_method_events
and Vunread_post_input_method_events.
| author | Kim F. Storm <storm@cua.dk> |
|---|---|
| date | Sun, 10 Sep 2006 21:10:50 +0000 |
| parents | 0798c7030130 |
| children | becf85cadcc0 |
line wrap: on
line diff
--- a/src/keyboard.c Sun Sep 10 20:54:19 2006 +0000 +++ b/src/keyboard.c Sun Sep 10 21:10:50 2006 +0000 @@ -10088,7 +10088,9 @@ if there is a doubt, the value is t. */) () { - if (!NILP (Vunread_command_events) || unread_command_char != -1) + if (!NILP (Vunread_command_events) || unread_command_char != -1 + || !NILP (Vunread_post_input_method_events) + || !NILP (Vunread_input_method_events)) return (Qt); get_input_pending (&input_pending,
