emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 d192c16: Fix recent change in lispref/processes.t


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 d192c16: Fix recent change in lispref/processes.texi.
Date: Sat, 27 Oct 2018 14:48:59 -0400 (EDT)

branch: emacs-26
commit d192c1671cbebb191165169c7add0ade6721e00e
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix recent change in lispref/processes.texi.
    
    * doc/lispref/processes.texi (Asynchronous Processes): Clarify
    wording.  Suggested by Thomas Fitzsimmons <address@hidden>.
    (Bug#33050)
---
 doc/lispref/processes.texi | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index 0868912..e7d61bd 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -601,13 +601,13 @@ Shell mode, because they allow for job control 
(@kbd{C-c}, @kbd{C-z},
 etc.)@: between the process and its children, and because interactive
 programs treat ptys as terminal devices, whereas pipes don't support
 these features.  However, for subprocesses used by Lisp programs for
-internal purposes (i.e., with no user interaction), where significant
-amounts of data need to be exchanged between the subprocess and the
-Lisp program, it is often better to use a pipe, because pipes are
-more efficient, and because they are immune to stray character
-injections that ptys introduce for large (around 500 byte) messages.
-Also, the total number of ptys is limited on many systems, and it is
-good not to waste them unnecessarily.
+internal purposes (i.e., no user interaction with the subprocess is
+required), where significant amounts of data need to be exchanged
+between the subprocess and the Lisp program, it is often better to use
+a pipe, because pipes are more efficient, and because they are immune
+to stray character injections that ptys introduce for large (around
+500 byte) messages.  Also, the total number of ptys is limited on many
+systems, and it is good not to waste them unnecessarily.
 
 @defun make-process &rest args
 This function is the basic low-level primitive for starting



reply via email to

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