Add several new operations on vectors. Eliminate unnecessary
authorChris Hanson <org/chris-hanson/cph>
Sun, 23 Feb 1997 06:16:12 +0000 (06:16 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 23 Feb 1997 06:16:12 +0000 (06:16 +0000)
bindings.

v7/src/runtime/vector.scm

index 17fe13697f1744c5843ce40992cb9554bbd4d9d2..7836a30e258e6ec2b74833e0bb504f08aa6979e5 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: vector.scm,v 14.9 1997/02/23 06:11:12 cph Exp $
+$Id: vector.scm,v 14.10 1997/02/23 06:16:12 cph Exp $
 
 Copyright (c) 1988-97 Massachusetts Institute of Technology
 
@@ -224,7 +224,7 @@ MIT in each case. |#
   (guarantee-subvector vector start end 'SUBVECTOR-FILLED?)
   (let loop ((index start))
     (or (fix:= index end)
-       (and (eqv? (vector-ref v index) element)
+       (and (eqv? (vector-ref vector index) element)
             (loop (fix:+ index 1))))))
 
 (define (vector-filled? vector element)