From 51d8b30ef81485d5b67df7133d5f687c2db10d12 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sun, 10 Dec 2006 23:13:39 +0000 Subject: [PATCH] (Feval_buffer, Feval_region): Doc fix. --- src/lread.c | 6 +++--- 1 file 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, { EMACS_TIME wait_time; int sec, usec; - double duration = extract_float (seconds); + double duration = extract_float (seconds); sec = (int) duration; usec = (duration - sec) * 1000000; @@ -1552,7 +1552,7 @@ DEFUN ("eval-buffer", Feval_buffer, Seval_buffer, 0, 5, "", Programs can pass two arguments, BUFFER and PRINTFLAG. BUFFER is the buffer to evaluate (nil means use current buffer). PRINTFLAG controls printing of output: -nil means discard it; anything else is stream for print. +A value of nil means discard it; anything else is stream for print. If the optional third argument FILENAME is non-nil, it specifies the file name to use for `load-history'. @@ -1601,7 +1601,7 @@ When called from programs, expects two arguments, giving starting and ending indices in the current buffer of the text to be executed. Programs can pass third argument PRINTFLAG which controls output: -nil means discard it; anything else is stream for printing it. +A value of nil means discard it; anything else is stream for printing it. Also the fourth argument READ-FUNCTION, if non-nil, is used instead of `read' to read each expression. It gets one argument which is the input stream for reading characters. -- 2.39.5