diff options
| author | Richard M. Stallman | 1992-06-03 02:55:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-06-03 02:55:55 +0000 |
| commit | 94b304d75bf726a58599a76820c6f91b0b0005cd (patch) | |
| tree | 5a6bab4d301e5c499fbdcf0417836bc76f4ac4a5 /src | |
| parent | 6d95ff37b33a90425a17dcc2d048af27a31d218d (diff) | |
| download | emacs-94b304d75bf726a58599a76820c6f91b0b0005cd.tar.gz emacs-94b304d75bf726a58599a76820c6f91b0b0005cd.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c index 9477a11c421..0c38fa0ed5a 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -500,9 +500,11 @@ readevalloop (readcharfun, stream, evalfun, printflag) | |||
| 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\ |