Function: gnus-read-event-char
gnus-read-event-char is a byte-compiled function defined in
gnus-util.el.gz.
Signature
(gnus-read-event-char &optional PROMPT)
Documentation
Get the next event.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-read-event-char (&optional prompt)
"Get the next event."
(let ((event (read-event prompt)))
(cons (and (numberp event) event) event)))