Doc "without given" no grammar english.

~/gnu/emacs/src/keyboard.c
...
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 before `unread-command-events'
and actual keyboard input without given to `input-method-function'.  */);
...

Un/read pipeline apparently looks like ...

toplevel command loop
        ^
        |
        + <--- unread-post-input-method-events
        ^
        |
        + <--- unread-command-char (obsolete)
        ^
        |
input-method-function
        ^
        |
        + <--- unread-command-events
        ^
        |
        + <--- unread-input-method-events
        ^
        |
actual user input

... perhaps the doc should clarify that?

                Peace
                        --Devon
         /~\
         \ /    Health Care
          X     not warfare
         / \

        Dubya won the digital vote
        Kerry won the popular vote

PS: determined empirically by

(setq unread-post-input-method-events '(?a)
      unread-command-char ?b
      unread-command-events '(?c)
      unread-input-method-events '(?d))
; (100)abcd


_______________________________________________
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
  • unread Devon Sean McCullough
    • Re: unread Richard Stallman
    • unread Devon Sean McCullough

Reply via email to