diff options
author | Arun Isaac | 2021-03-06 00:42:48 +0530 |
---|---|---|
committer | Arun Isaac | 2021-03-06 00:44:39 +0530 |
commit | 4f9e71ff1022d1fa9568e2416bc208b32b9d87bc (patch) | |
tree | b985d3358c9d5f8265cbe27aeafdbaa04fee144f | |
parent | cc8900ad642fbef2a777738170d217a17790775e (diff) | |
download | ccwl-4f9e71ff1022d1fa9568e2416bc208b32b9d87bc.tar.gz ccwl-4f9e71ff1022d1fa9568e2416bc208b32b9d87bc.tar.lz ccwl-4f9e71ff1022d1fa9568e2416bc208b32b9d87bc.zip |
Remove <intermediate> type.
We will auto-connect inputs and outputs by matching their unique
identifiers.
* ccwl/ccwl.scm (<intermediate>): Delete type.
-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 24e86f0..5a1f5b5 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -14,7 +14,6 @@ input output step - intermediate clitool-step)) @@ -113,11 +112,6 @@ lists---the base command and the actual arguments." args))) (values base-command (parse-arguments arguments)))) -(define-immutable-record-type <intermediate> - (intermediate input output-source) - intermediate? - (input intermediate-input) - (output-source intermediate-output-source)) (make-output id type binding source other)) |