diff options
author | Arun Isaac | 2023-09-19 20:05:51 +0100 |
---|---|---|
committer | Arun Isaac | 2023-09-19 20:05:51 +0100 |
commit | 46a449c23e0d6d546637281e7fbbddaa48d7fbc9 (patch) | |
tree | 935ae4904a38623316c7f3c3f47e974559408457 | |
parent | 01ec2e0c15a9f7db2b6374e1469a90df30109300 (diff) | |
download | ccwl-46a449c23e0d6d546637281e7fbbddaa48d7fbc9.tar.gz ccwl-46a449c23e0d6d546637281e7fbbddaa48d7fbc9.tar.lz ccwl-46a449c23e0d6d546637281e7fbbddaa48d7fbc9.zip |
ccwl: Add set-output-id setter.
* ccwl/ccwl.scm (<output>)[id]: Add setter.
-rw-r--r-- | ccwl/ccwl.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm index f31e99a..9bbece3 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -1,5 +1,5 @@ ;;; ccwl --- Concise Common Workflow Language -;;; Copyright © 2021, 2022 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2021, 2022, 2023 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file is part of ccwl. ;;; @@ -139,7 +139,7 @@ (define-immutable-record-type <output> (make-output id type binding source other) output? - (id output-id) + (id output-id set-output-id) (type output-type) (binding output-binding) (source output-source set-output-source) |