#| -*-Scheme-*-
-$Id: defstr.scm,v 14.47 2003/03/08 02:52:33 cph Exp $
+$Id: defstr.scm,v 14.48 2003/03/08 04:53:58 cph Exp $
Copyright 1987,1988,1989,1990,1991,1992 Massachusetts Institute of Technology
Copyright 1993,1994,1995,1996,1997,2000 Massachusetts Institute of Technology
,@slot-names)))))
(define (constructor-definition/keyword structure name)
- (if (eq? (structure/type structure) 'RECORD)
+ (make-constructor structure name 'KEYWORD-LIST
+ (lambda (tag-expression)
(let ((context (structure/context structure)))
- `(DEFINE ,name
- (,(absolute 'RECORD-KEYWORD-CONSTRUCTOR context)
- ,(close (structure/tag-expression structure) context))))
- (make-constructor structure name 'KEYWORD-LIST
- (lambda (tag-expression)
- (let ((context (structure/context structure)))
- (let ((list-cons
- `(,@(constructor-prefix-slots structure tag-expression)
- (,(absolute 'DEFINE-STRUCTURE/KEYWORD-PARSER context)
- KEYWORD-LIST
- (,(absolute 'LIST context)
- ,@(map (lambda (slot)
- `(,(absolute 'CONS context)
- ',(slot/name slot)
- ,(get-slot-default slot structure)))
- (structure/slots structure)))))))
- (case (structure/type structure)
- ((VECTOR)
- `(,(absolute 'APPLY context) ,(absolute 'VECTOR context)
- ,@list-cons))
- ((LIST)
- `(,(absolute 'CONS* context) ,@list-cons)))))))))
+ (let ((list-cons
+ `(,@(constructor-prefix-slots structure tag-expression)
+ (,(absolute 'DEFINE-STRUCTURE/KEYWORD-PARSER context)
+ KEYWORD-LIST
+ (,(absolute 'LIST context)
+ ,@(map (lambda (slot)
+ `(,(absolute 'CONS context)
+ ',(slot/name slot)
+ ,(get-slot-default slot structure)))
+ (structure/slots structure)))))))
+ (case (structure/type structure)
+ ((RECORD)
+ `(,(absolute 'APPLY context) ,(absolute '%RECORD context)
+ ,@list-cons))
+ ((VECTOR)
+ `(,(absolute 'APPLY context) ,(absolute 'VECTOR context)
+ ,@list-cons))
+ ((LIST)
+ `(,(absolute 'CONS* context) ,@list-cons))))))))
\f
(define (constructor-definition/boa structure name lambda-list)
(make-constructor structure name lambda-list