comparison src/lread.c @ 732:a8d94735277e

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Tue, 30 Jun 1992 13:54:21 +0000
parents 681c352bbf30
children 852a2f5838da
comparison
equal deleted inserted replaced
731:5c6db33a9ef6 732:a8d94735277e
186 register Lisp_Object val; 186 register Lisp_Object val;
187 187
188 val = read_char (0); 188 val = read_char (0);
189 return val; 189 return val;
190 } 190 }
191 #endif
191 192
192 DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0, 193 DEFUN ("read-char-exclusive", Fread_char_exclusive, Sread_char_exclusive, 0, 0, 0,
193 "Read a character from the command input (keyboard or macro).\n\ 194 "Read a character from the command input (keyboard or macro).\n\
194 It is returned as a number. Non character events are ignored.") 195 It is returned as a number. Non character events are ignored.")
195 () 196 ()
204 val = getchar (); 205 val = getchar ();
205 #endif 206 #endif
206 207
207 return val; 208 return val;
208 } 209 }
209 #endif /* HAVE_X_WINDOWS */
210 210
211 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0, 211 DEFUN ("get-file-char", Fget_file_char, Sget_file_char, 0, 0, 0,
212 "Don't use this yourself.") 212 "Don't use this yourself.")
213 () 213 ()
214 { 214 {
499 unbind_to (count, Qnil); 499 unbind_to (count, Qnil);
500 } 500 }
501 501
502 #ifndef standalone 502 #ifndef standalone
503 503
504 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 1, "", 504 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 2, "",
505 "Execute the current buffer as Lisp code.\n\ 505 "Execute the current buffer as Lisp code.\n\
506 Programs can pass two arguments, BUFFER and PRINTFLAG.\n\ 506 Programs can pass two arguments, BUFFER and PRINTFLAG.\n\
507 BUFFER is the buffer to evaluate (nil means use current buffer).\n\ 507 BUFFER is the buffer to evaluate (nil means use current buffer).\n\
508 PRINTFLAG controls printing of output:\n\ 508 PRINTFLAG controls printing of output:\n\
509 nil means discard it; anything else is stream for print.\n\ 509 nil means discard it; anything else is stream for print.\n\