Mercurial > emacs
comparison src/lread.c @ 675:85fd29f25c75
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 03 Jun 1992 02:55:55 +0000 |
parents | 6217fa6e2cab |
children | 681c352bbf30 |
comparison
equal
deleted
inserted
replaced
674:d5c90f190057 | 675:85fd29f25c75 |
---|---|
498 unbind_to (count, Qnil); | 498 unbind_to (count, Qnil); |
499 } | 499 } |
500 | 500 |
501 #ifndef standalone | 501 #ifndef standalone |
502 | 502 |
503 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 2, "bBuffer: ", | 503 DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 1, "", |
504 "Execute BUFFER as Lisp code. If BUFFER is nil, use the current buffer.\n\ | 504 "Execute the current buffer as Lisp code.\n\ |
505 Programs can pass argument PRINTFLAG which controls printing of output:\n\ | 505 Programs can pass two arguments, BUFFER and PRINTFLAG.\n\ |
506 BUFFER is the buffer to evaluate (nil means use current buffer).\n\ | |
507 PRINTFLAG controls printing of output:\n\ | |
506 nil means discard it; anything else is stream for print.\n\ | 508 nil means discard it; anything else is stream for print.\n\ |
507 \n\ | 509 \n\ |
508 If there is no error, point does not move. If there is an error,\n\ | 510 If there is no error, point does not move. If there is an error,\n\ |
509 point remains at the end of the last character read from the buffer.") | 511 point remains at the end of the last character read from the buffer.") |
510 (bufname, printflag) | 512 (bufname, printflag) |