Fix a couple of typos.
authorChris Hanson <org/chris-hanson/cph>
Tue, 29 Mar 2005 05:02:11 +0000 (05:02 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 29 Mar 2005 05:02:11 +0000 (05:02 +0000)
v7/src/runtime/list.scm

index 42b6db6c3063454f1f5e779d9e63dfe38708ca86..44db97bf1115fb16ea31f9fab139b867296ae106 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: list.scm,v 14.47 2005/03/29 03:38:36 cph Exp $
+$Id: list.scm,v 14.48 2005/03/29 05:02:11 cph Exp $
 
 Copyright 1986,1987,1988,1989,1990,1991 Massachusetts Institute of Technology
 Copyright 1992,1993,1994,1995,1996,2000 Massachusetts Institute of Technology
@@ -1065,7 +1065,7 @@ USA.
        (null? l1))))
 
 (define (guarantee-restricted-keyword-list object keywords caller)
-  (if (not (restricted-keyword-list? object))
+  (if (not (restricted-keyword-list? object keywords))
       (error:not-restricted-keyword-list object caller)))
 
 (define (error:not-restricted-keyword-list object caller)
@@ -1078,7 +1078,7 @@ USA.
             (not (memq (car l1) symbols))
             (pair? (cdr l1))
             (not (eq? (cdr l1) l2))
-            (loop (cdr (cdr l1)) (cdr l1) (cons (car 1) symbols)))
+            (loop (cdr (cdr l1)) (cdr l1) (cons (car l1) symbols)))
        (null? l1))))
 
 (define-guarantee unique-keyword-list "unique keyword list")