aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-12-10 23:13:39 +0000
committerJuanma Barranquero2006-12-10 23:13:39 +0000
commit51d8b30ef81485d5b67df7133d5f687c2db10d12 (patch)
tree492ae78bb6d60b5b1cc712111c778ba176769798 /src
parent0493af6f9bdc238f711821919c9518e98644425a (diff)
downloademacs-51d8b30ef81485d5b67df7133d5f687c2db10d12.tar.gz
emacs-51d8b30ef81485d5b67df7133d5f687c2db10d12.zip
(Feval_buffer, Feval_region): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c
index 6ce7c6a1aef..77de9025e36 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -481,7 +481,7 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii,
481 { 481 {
482 EMACS_TIME wait_time; 482 EMACS_TIME wait_time;
483 int sec, usec; 483 int sec, usec;
484 double duration = extract_float (seconds); 484 double duration = extract_float (seconds);
485 485
486 sec = (int) duration; 486 sec = (int) duration;
487 usec = (duration - sec) * 1000000; 487 usec = (duration - sec) * 1000000;
@@ -1552,7 +1552,7 @@ DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "",
1552Programs can pass two arguments, BUFFER and PRINTFLAG. 1552Programs can pass two arguments, BUFFER and PRINTFLAG.
1553BUFFER is the buffer to evaluate (nil means use current buffer). 1553BUFFER is the buffer to evaluate (nil means use current buffer).
1554PRINTFLAG controls printing of output: 1554PRINTFLAG controls printing of output:
1555nil means discard it; anything else is stream for print. 1555A value of nil means discard it; anything else is stream for print.
1556 1556
1557If the optional third argument FILENAME is non-nil, 1557If the optional third argument FILENAME is non-nil,
1558it specifies the file name to use for `load-history'. 1558it specifies the file name to use for `load-history'.
@@ -1601,7 +1601,7 @@ When called from programs, expects two arguments,
1601giving starting and ending indices in the current buffer 1601giving starting and ending indices in the current buffer
1602of the text to be executed. 1602of the text to be executed.
1603Programs can pass third argument PRINTFLAG which controls output: 1603Programs can pass third argument PRINTFLAG which controls output:
1604nil means discard it; anything else is stream for printing it. 1604A value of nil means discard it; anything else is stream for printing it.
1605Also the fourth argument READ-FUNCTION, if non-nil, is used 1605Also the fourth argument READ-FUNCTION, if non-nil, is used
1606instead of `read' to read each expression. It gets one argument 1606instead of `read' to read each expression. It gets one argument
1607which is the input stream for reading characters. 1607which is the input stream for reading characters.