aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell/esh-cmd.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/eshell/esh-cmd.el')
-rw-r--r--lisp/eshell/esh-cmd.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el
index 60615131e20..d3613d31405 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -800,7 +800,7 @@ This macro calls itself recursively, with NOTFIRST non-nil."
800(defmacro eshell-do-pipelines-synchronously (pipeline) 800(defmacro eshell-do-pipelines-synchronously (pipeline)
801 "Execute the commands in PIPELINE in sequence synchronously. 801 "Execute the commands in PIPELINE in sequence synchronously.
802Output of each command is passed as input to the next one in the pipeline. 802Output of each command is passed as input to the next one in the pipeline.
803This is used on systems where `start-process' is not supported." 803This is used on systems where async subprocesses are not supported."
804 (when (setq pipeline (cadr pipeline)) 804 (when (setq pipeline (cadr pipeline))
805 `(progn 805 `(progn
806 ,(when (cdr pipeline) 806 ,(when (cdr pipeline)
@@ -838,7 +838,7 @@ This is used on systems where `start-process' is not supported."
838 "Execute the commands in PIPELINE, connecting each to one another." 838 "Execute the commands in PIPELINE, connecting each to one another."
839 `(let ((eshell-in-pipeline-p t) tailproc) 839 `(let ((eshell-in-pipeline-p t) tailproc)
840 (progn 840 (progn
841 ,(if (fboundp 'start-process) 841 ,(if (fboundp 'make-process)
842 `(eshell-do-pipelines ,pipeline) 842 `(eshell-do-pipelines ,pipeline)
843 `(let ((tail-handles (eshell-create-handles 843 `(let ((tail-handles (eshell-create-handles
844 (car (aref eshell-current-handles 844 (car (aref eshell-current-handles