diff options
author | Arun Isaac | 2021-05-17 02:14:55 +0530 |
---|---|---|
committer | Arun Isaac | 2021-05-17 02:16:15 +0530 |
commit | 32f4fe055882e7d9bc45d9acb85b72a4743f7b18 (patch) | |
tree | 2b23c978395dff731b5ec882d7176afaab52cd50 | |
parent | e0e1ea4520e971fbb93240ea84d8f6e065540080 (diff) | |
download | ccwl-32f4fe055882e7d9bc45d9acb85b72a4743f7b18.tar.gz ccwl-32f4fe055882e7d9bc45d9acb85b72a4743f7b18.tar.lz ccwl-32f4fe055882e7d9bc45d9acb85b72a4743f7b18.zip |
Remove deprecated %stdin and %stdout variables.
* ccwl/ccwl.scm (%stdin, %stdout): Delete variables.
-rw-r--r-- | ccwl/ccwl.scm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm index ae0f304..1d370fa 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -83,12 +83,6 @@ "Build and return an <output> object." (make-output id type binding source other)) -(define %stdin - (input "stdin" #:type 'File)) - -(define %stdout - (output "stdout" #:type 'stdout)) - (define (filter-alist alist) "Filter ALIST removing entries with #f as the value." (filter (match-lambda |