Renamen MAKE-ADDRESS-CONSTRUCTOR to MAKE-ADDRESS-RECORD to make things clearer.

This commit is contained in:
interp 2003-07-15 14:06:17 +00:00
parent 0cfc9491d9
commit 3d5a92eb44
1 changed files with 3 additions and 3 deletions

View File

@ -10,15 +10,15 @@
;; (url (address new-url) "Click here to get more")...)
(define-record-type address :address
(make-address-constructor name annotated? annotations)
(make-address-record name annotated? annotations)
(name address-name)
(annotated? address-annotated?)
(annotations address-annotations set-address-annotations!))
(define (really-make-address name annotated?)
(if annotated?
(make-address-constructor name annotated? #f)
(make-address-constructor name annotated? '())))
(make-address-record name annotated? #f)
(make-address-record name annotated? '())))
(define (address-add-annotation! address annotation)
(let ((index (generate-unique-name "val")))