aboutsummaryrefslogtreecommitdiff
path: root/ccwl
diff options
context:
space:
mode:
authorArun Isaac2021-03-17 17:02:34 +0530
committerArun Isaac2021-03-17 17:02:34 +0530
commitaf566def581399f785fc3fd1c8ecba4149c52ffc (patch)
treeaea21b08611cad91cc2e6cb27c61cdb303294fa3 /ccwl
parenteab6e3381363671d0c4abde04a9dc5e70115b37c (diff)
downloadccwl-af566def581399f785fc3fd1c8ecba4149c52ffc.tar.gz
ccwl-af566def581399f785fc3fd1c8ecba4149c52ffc.tar.lz
ccwl-af566def581399f785fc3fd1c8ecba4149c52ffc.zip
Set default type of outputs to File.
* ccwl/ccwl.scm (output): Set default type to File.
Diffstat (limited to 'ccwl')
-rw-r--r--ccwl/ccwl.scm2
1 files changed, 1 insertions, 1 deletions
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 <output> object."
(make-output id type binding source other))