diff src/lread.c @ 74566:040d179fb669

(Feval_buffer, Feval_region): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 10 Dec 2006 23:13:39 +0000
parents 4d1706442c96
children 3d45362f1d38 17e0dd217877 6588c6259dfb
line wrap: on
line diff
--- a/src/lread.c	Sun Dec 10 23:10:49 2006 +0000
+++ b/src/lread.c	Sun Dec 10 23:13:39 2006 +0000
@@ -481,7 +481,7 @@
     {
       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 @@
 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 @@
 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.