From e9f13148358a250b72a7ddae932c828235eeb9ab Mon Sep 17 00:00:00 2001 From: Benutzer Date: Fri, 8 Dec 2017 13:55:43 +0100 Subject: Do not redirect stderr to stdin in fork/pipe. Signed-off-by: Peter Bex --- scsh-process.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scsh-process.scm b/scsh-process.scm index fd7ff3f..60b9fab 100644 --- a/scsh-process.scm +++ b/scsh-process.scm @@ -219,7 +219,7 @@ (process-execute (maybe->string prog) (map maybe->string args))) (define (fork/pipe #!optional thunk continue-threads?) - (fork/pipe+ '((1 2 0)) thunk continue-threads?)) + (fork/pipe+ '((1 0)) thunk continue-threads?)) ;; Run a thunk and exit 0 after the thunk returns. ;; If an exception occurs, handle it and exit 1. -- cgit v1.2.3