From af566def581399f785fc3fd1c8ecba4149c52ffc Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 17 Mar 2021 17:02:34 +0530 Subject: Set default type of outputs to File. * ccwl/ccwl.scm (output): Set default type to File. --- ccwl/ccwl.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm index 6d02ec3..b3c4fad 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -48,7 +48,7 @@ (source output-source) (other output-other)) -(define* (output id #:key type binding source (other '())) +(define* (output id #:key (type 'File) binding source (other '())) "Build and return an object." (make-output id type binding source other)) -- cgit v1.2.3