diff options
| author | Richard M. Stallman | 1996-02-04 05:52:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-04 05:52:54 +0000 |
| commit | cc39bc3802b833fe4d36ab10478dc9d384aa2f1f (patch) | |
| tree | 266f29188452f43be72e607d4064e8b5c0f82ab0 /src/lread.c | |
| parent | 943b580da367e7d1aca9360a2d5aae9e5592adb8 (diff) | |
| download | emacs-cc39bc3802b833fe4d36ab10478dc9d384aa2f1f.tar.gz emacs-cc39bc3802b833fe4d36ab10478dc9d384aa2f1f.zip | |
(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 (); | |||
| 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 | |||
| 249 | Lisp_Object | 250 | Lisp_Object |
| 250 | read_filtered_event (no_switch_frame, ascii_required, error_nonascii) | 251 | read_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 | ||
| 338 | DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0, | 339 | DEFUN ("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\ |
| 340 | It is returned as a number. Non character events are ignored.") | 341 | It 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); |