diff options
| -rw-r--r-- | scsh-process.scm | 3 | ||||
| -rw-r--r-- | scsh-process.setup | 2 | 
2 files changed, 2 insertions, 3 deletions
| diff --git a/scsh-process.scm b/scsh-process.scm index bdb40aa..280a3c9 100644 --- a/scsh-process.scm +++ b/scsh-process.scm @@ -274,9 +274,8 @@              (setup-redirection (= 1 (current-output-port)))              (setup-redirection (= 2 (current-error-port)))              ?expr0 ...)) -    ((_ (epf ?args ...))          ; This disambiguates redirection inside && and || +    ((_ (epf ?args ...))              ; This disambiguates redirection       (exec-epf ?args ...)) -    ;; This is purely for convenience, so you don't need the (epf ...) wrapper      ((_ (?prog ?arg0 ...) ?redir0 ...)       (begin         (setup-redirection ?redir0) ... diff --git a/scsh-process.setup b/scsh-process.setup index 50c62e1..379afa1 100644 --- a/scsh-process.setup +++ b/scsh-process.setup @@ -1,2 +1,2 @@  ;; -*- Scheme -*- -(standard-extension scsh-process 0.1)
\ No newline at end of file +(standard-extension 'scsh-process 0.1) | 
