diff options
author | Peter Bex <peter@more-magic.net> | 2012-10-02 15:31:03 +0100 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2012-10-02 15:31:03 +0100 |
commit | af93407cb40916a85d444dc62174d3b421b8842c (patch) | |
tree | 22a91171406f7846540668e0aad47fa549b17bf2 | |
parent | 6907a5c947daab579d656cede43589d31dcd808c (diff) | |
download | scsh-process-af93407cb40916a85d444dc62174d3b421b8842c.tar.gz |
Fix setup script and remove untrue and misleading comment
-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) |