diff options
author | Arun Isaac | 2021-03-07 03:39:11 +0530 |
---|---|---|
committer | Arun Isaac | 2021-03-07 03:53:51 +0530 |
commit | 6f398db2fc89f0703ab022018689b99e45365ff6 (patch) | |
tree | ebdc33ad8c91448635ac89b9435eeb98bee70960 | |
parent | 23789db7ed409ccafc079d5fe9e9d0c32b66abe5 (diff) | |
download | ccwl-6f398db2fc89f0703ab022018689b99e45365ff6.tar.gz ccwl-6f398db2fc89f0703ab022018689b99e45365ff6.tar.lz ccwl-6f398db2fc89f0703ab022018689b99e45365ff6.zip |
Remove field binding from constructor of the <input> type.
* ccwl/ccwl.scm (<input>): Remove field binding from constructor.
-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 5e97331..b1fa485 100644 --- a/ccwl/ccwl.scm +++ b/ccwl/ccwl.scm @@ -16,7 +16,7 @@ pipeline)) (define-immutable-record-type <input> - (make-input id type label default binding source other) + (make-input id type label default source other) input? (id input-id) (type input-type) |