diff options
author | Arun Isaac | 2021-03-17 17:02:34 +0530 |
---|---|---|
committer | Arun Isaac | 2021-03-17 17:02:34 +0530 |
commit | af566def581399f785fc3fd1c8ecba4149c52ffc (patch) | |
tree | aea21b08611cad91cc2e6cb27c61cdb303294fa3 | |
parent | eab6e3381363671d0c4abde04a9dc5e70115b37c (diff) | |
download | ccwl-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.
-rw-r--r-- | ccwl/ccwl.scm | 2 |
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)) |