emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

unread


From: Devon Sean McCullough
Subject: unread
Date: Thu, 8 Mar 2007 15:31:36 -0500 (EST)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]