diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-02-04 05:52:54 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-02-04 05:52:54 +0000 |
commit | e2c725f12c9031d199bb83d768212a85426afb46 (patch) | |
tree | 78d3290d179345207ce83edc34daccdc7b4b49ab /src/lread.c | |
parent | 20d69d64937e4b1e3e408c6f8be81a6899567fa6 (diff) | |
download | emacs-e2c725f12c9031d199bb83d768212a85426afb46.tar.gz |
(Fread_char_exclusive): Doc fix.
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 90e3b2acf56..4c44949d5b1 100644 --- a/src/lread.c +++ b/src/lread.c @@ -246,6 +246,7 @@ extern Lisp_Object read_char (); get isn't an ASCII character with modifiers. If it's zero but ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII character. */ + Lisp_Object read_filtered_event (no_switch_frame, ascii_required, error_nonascii) int no_switch_frame, ascii_required, error_nonascii; @@ -337,7 +338,7 @@ DEFUN ("read-event", Fread_event, Sread_event, 0, 0, 0, DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0, "Read a character from the command input (keyboard or macro).\n\ -It is returned as a number. Non character events are ignored.") +It is returned as a number. Non-character events are ignored.") () { return read_filtered_event (1, 1, 0); |