aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-03-10 01:05:39 +0000
committerChong Yidong2009-03-10 01:05:39 +0000
commit72097cd9ef448b5ece469afe4a88835aafeff189 (patch)
treea74338199e76c61150c5a55ee4928454f92acd97
parentb55103fb51e4c13563e2b9a2b3db0ff96abced17 (diff)
downloademacs-72097cd9ef448b5ece469afe4a88835aafeff189.tar.gz
emacs-72097cd9ef448b5ece469afe4a88835aafeff189.zip
(Feval_buffer): Doc fix.
-rw-r--r--src/lread.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/lread.c b/src/lread.c
index e4ba5229e20..8a4b96874ce 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1803,18 +1803,16 @@ readevalloop (readcharfun, stream, sourcename, evalfun,
1803 1803
1804DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "", 1804DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "",
1805 doc: /* Execute the current buffer as Lisp code. 1805 doc: /* Execute the current buffer as Lisp code.
1806Programs can pass two arguments, BUFFER and PRINTFLAG. 1806When called from a Lisp program (i.e., not interactively), this
1807function accepts up to five optional arguments:
1807BUFFER is the buffer to evaluate (nil means use current buffer). 1808BUFFER is the buffer to evaluate (nil means use current buffer).
1808PRINTFLAG controls printing of output: 1809PRINTFLAG controls printing of output:
1809A value of nil means discard it; anything else is stream for print. 1810 A value of nil means discard it; anything else is stream for print.
1810 1811FILENAME specifies the file name to use for `load-history'.
1811If the optional third argument FILENAME is non-nil, 1812UNIBYTE, if non-nil, specifies `load-convert-to-unibyte' for this
1812it specifies the file name to use for `load-history'. 1813 invocation.
1813The optional fourth argument UNIBYTE specifies `load-convert-to-unibyte' 1814DO-ALLOW-PRINT, if non-nil, specifies that `print' and related
1814for this invocation. 1815 functions should work normally even if PRINTFLAG is nil.
1815
1816The optional fifth argument DO-ALLOW-PRINT, if non-nil, specifies that
1817`print' and related functions should work normally even if PRINTFLAG is nil.
1818 1816
1819This function preserves the position of point. */) 1817This function preserves the position of point. */)
1820 (buffer, printflag, filename, unibyte, do_allow_print) 1818 (buffer, printflag, filename, unibyte, do_allow_print)