Index: ice-9/mapping.scm =================================================================== RCS file: /cvsroot/guile/guile/guile-core/ice-9/mapping.scm,v retrieving revision 1.7 diff -u -r1.7 mapping.scm --- ice-9/mapping.scm 5 Apr 2003 19:04:27 -0000 1.7 +++ ice-9/mapping.scm 8 Jan 2004 11:30:41 -0000 @@ -102,8 +102,8 @@ (define (hash-table-mapping . options) (let* ((size (or (and options (number? (car options)) (car options)) 71)) - (hash-proc (or (kw-arg-ref options :hash-proc) hash)) - (assoc-proc (or (kw-arg-ref options :assoc-proc) + (hash-proc (or (kw-arg-ref options #:hash-proc) hash)) + (assoc-proc (or (kw-arg-ref options #:assoc-proc) (cond ((eq? hash-proc hash) assoc) ((eq? hash-proc hashv) assv) @@ -111,7 +111,7 @@ (else (error 'hash-table-mapping "Hash-procedure specified with no known assoc function." hash-proc))))) - (delete-proc (or (kw-arg-ref options :delete-proc) + (delete-proc (or (kw-arg-ref options #:delete-proc) (cond ((eq? hash-proc hash) delete!) ((eq? hash-proc hashv) delv!) @@ -119,7 +119,7 @@ (else (error 'hash-table-mapping "Hash-procedure specified with no known delete function." hash-proc))))) - (table-constructor (or (kw-arg-ref options :table-constructor) + (table-constructor (or (kw-arg-ref options #:table-constructor) (lambda (len) (make-vector len '()))))) (make-hash-table-mapping (table-constructor size) hash-proc Index: oop/goops.scm =================================================================== RCS file: /cvsroot/guile/guile/guile-core/oop/goops.scm,v retrieving revision 1.36 diff -u -r1.36 goops.scm --- oop/goops.scm 20 Apr 2003 17:35:41 -0000 1.36 +++ oop/goops.scm 8 Jan 2004 11:30:42 -0000 @@ -1431,7 +1431,7 @@ (set (get-keyword #:slot-set! (slot-definition-options s) #f)) (env (class-environment class))) (if (not (and get set)) - (goops-error "You must supply a :slot-ref and a :slot-set! in ~S" + (goops-error "You must supply a #:slot-ref and a #:slot-set! in ~S" s)) (list get set))) (else (next-method))))