From cc8900ad642fbef2a777738170d217a17790775e Mon Sep 17 00:00:00 2001
From: Arun Isaac
Date: Sat, 6 Mar 2021 00:39:26 +0530
Subject: Re-order fields of type.
* ccwl/ccwl.scm (): Re-order fields to be consistent
with its constructor.
---
ccwl/ccwl.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm
index 2dc3b66..24e86f0 100644
--- a/ccwl/ccwl.scm
+++ b/ccwl/ccwl.scm
@@ -23,8 +23,8 @@
input?
(id input-id)
(type input-type)
- (default input-default)
(label input-label)
+ (default input-default)
(other input-other))
(define-immutable-record-type
@@ -33,7 +33,7 @@
(define* (input id #:key type label (default (make-unspecified-default)) (other '()))
"Build and return an object."
- (make-input id type default label other))
+ (make-input id type label default other))
(define-immutable-record-type