aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-02-04 05:52:54 +0000
committerRichard M. Stallman1996-02-04 05:52:54 +0000
commitcc39bc3802b833fe4d36ab10478dc9d384aa2f1f (patch)
tree266f29188452f43be72e607d4064e8b5c0f82ab0
parent943b580da367e7d1aca9360a2d5aae9e5592adb8 (diff)
downloademacs-cc39bc3802b833fe4d36ab10478dc9d384aa2f1f.tar.gz
emacs-cc39bc3802b833fe4d36ab10478dc9d384aa2f1f.zip
(Fread_char_exclusive): Doc fix.
-rw-r--r--src/lread.c3
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 ();
246 get isn't an ASCII character with modifiers. If it's zero but 246 get isn't an ASCII character with modifiers. If it's zero but
247 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII 247 ASCII_REQUIRED is non-zero, we just re-read until we get an ASCII
248 character. */ 248 character. */
249
249Lisp_Object 250Lisp_Object
250read_filtered_event (no_switch_frame, ascii_required, error_nonascii) 251read_filtered_event (no_switch_frame, ascii_required, error_nonascii)
251 int no_switch_frame, ascii_required, error_nonascii; 252 int no_switch_frame, ascii_required, error_nonascii;
@@ -337,7 +338,7 @@ DEFUN ("read-event", Fread_event, Sread_event, 0, 0, 0,
337 338
338DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0, 339DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0,
339 "Read a character from the command input (keyboard or macro).\n\ 340 "Read a character from the command input (keyboard or macro).\n\
340It is returned as a number. Non character events are ignored.") 341It is returned as a number. Non-character events are ignored.")
341 () 342 ()
342{ 343{
343 return read_filtered_event (1, 1, 0); 344 return read_filtered_event (1, 1, 0);