]> git.eshelyaron.com Git - emacs.git/commitdiff
(Faccept_process_output): Fix doc-string.
authorMartin Rudalics <rudalics@gmx.at>
Thu, 2 Oct 2008 08:04:54 +0000 (08:04 +0000)
committerMartin Rudalics <rudalics@gmx.at>
Thu, 2 Oct 2008 08:04:54 +0000 (08:04 +0000)
src/ChangeLog
src/process.c

index c4adaab887f96aa01af09f7bf74b0cb3fb88ad19..c7e4a9f87fb4b9ab11cc2d5226934c081c8d8064 100644 (file)
@@ -1,3 +1,7 @@
+2008-10-02  Martin Rudalics  <rudalics@gmx.at>
+
+       * process.c (Faccept_process_output): Fix doc-string.
+
 2008-10-02  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * gmalloc.c (__sbrk): Also define for uClibc.
index fd19fc9288d473c39c36c30b43632846a2406622..647025e055f1704d9dc16f217349305aaf044bba 100644 (file)
@@ -1221,7 +1221,7 @@ a socket connection.  */)
   return XPROCESS (process)->type;
 }
 #endif
-  
+
 DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0,
        doc: /* Return the connection type of PROCESS.
 The value is either the symbol `real', `network', or `serial'.
@@ -4137,9 +4137,9 @@ It is read into the process' buffers or given to their filter functions.
 Non-nil arg PROCESS means do not return until some output has been received
 from PROCESS.
 
-Non-nil second arg SECONDS and third arg MILLISEC are number of
-seconds and milliseconds to wait; return after that much time whether
-or not there is input.  If SECONDS is a floating point number,
+Non-nil second arg SECONDS and third arg MILLISEC are number of seconds
+and milliseconds to wait; return after that much time whether or not
+there is any subprocess output.  If SECONDS is a floating point number,
 it specifies a fractional number of seconds to wait.
 The MILLISEC argument is obsolete and should be avoided.
 
@@ -7136,7 +7136,7 @@ static void
 get_up_time (time_t *sec, unsigned *usec)
 {
   FILE *fup;
-  
+
   *sec = *usec = 0;
 
   BLOCK_INPUT;