emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103534: * processes.texi (Synchronou


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103534: * processes.texi (Synchronous Processes): Minor clarification (Bug#8149).
Date: Sat, 05 Mar 2011 15:45:09 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103534
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sat 2011-03-05 15:45:09 -0500
message:
  * processes.texi (Synchronous Processes): Minor clarification (Bug#8149).
modified:
  doc/lispref/ChangeLog
  doc/lispref/processes.texi
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2011-03-03 08:10:52 +0000
+++ b/doc/lispref/ChangeLog     2011-03-05 20:45:09 +0000
@@ -1,3 +1,8 @@
+2011-03-05  Chong Yidong  <address@hidden>
+
+       * processes.texi (Synchronous Processes): Minor clarification
+       (Bug#8149).
+
 2011-03-03  Glenn Morris  <address@hidden>
 
        * files.texi (Truenames): Minor clarification.  (Bug#2341)

=== modified file 'doc/lispref/processes.texi'
--- a/doc/lispref/processes.texi        2011-01-25 04:08:28 +0000
+++ b/doc/lispref/processes.texi        2011-03-05 20:45:09 +0000
@@ -266,10 +266,9 @@
 system, much like text written into a file.  @xref{Coding Systems}.
 
 @defun call-process program &optional infile destination display &rest args
-This function calls @var{program} in a separate process and waits for
-it to finish.
+This function calls @var{program} and waits for it to finish.
 
-The standard input for the process comes from file @var{infile} if
+The standard input for the new process comes from file @var{infile} if
 @var{infile} is not @code{nil}, and from the null device otherwise.
 The argument @var{destination} says where to put the process output.
 Here are the possibilities:
@@ -488,10 +487,10 @@
 @end defun
 
 @defun call-process-shell-command command &optional infile destination display 
&rest args
-This function executes the shell command @var{command} synchronously
-in a separate process.  The final arguments @var{args} are additional
-arguments to add at the end of @var{command}.  The other arguments
-are handled as in @code{call-process}.
+This function executes the shell command @var{command} synchronously.
+The final arguments @var{args} are additional arguments to add at the
+end of @var{command}.  The other arguments are handled as in
address@hidden
 @end defun
 
 @defun process-file-shell-command command &optional infile destination display 
&rest args
@@ -506,12 +505,12 @@
 @end defun
 
 @defun process-lines program &rest args
-This function runs @var{program} in a separate process, waits for it
-to finish, and returns its output as a list of strings.  Each string
-in the list holds a single line of text output by the program; the
-end-of-line characters are stripped from each line.  The arguments
-beyond @var{program}, @var{args}, are strings that specify
-command-line arguments with which to run the program.
+This function runs @var{program}, waits for it to finish, and returns
+its output as a list of strings.  Each string in the list holds a
+single line of text output by the program; the end-of-line characters
+are stripped from each line.  The arguments beyond @var{program},
address@hidden, are strings that specify command-line arguments with which
+to run the program.
 
 If @var{program} exits with a non-zero exit status, this function
 signals an error.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]