projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a25f8d8
)
Add several new operations on vectors. Eliminate unnecessary
author
Chris Hanson
<org/chris-hanson/cph>
Sun, 23 Feb 1997 06:16:12 +0000
(06:16 +0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Sun, 23 Feb 1997 06:16:12 +0000
(06:16 +0000)
bindings.
v7/src/runtime/vector.scm
patch
|
blob
|
history
diff --git
a/v7/src/runtime/vector.scm
b/v7/src/runtime/vector.scm
index 17fe13697f1744c5843ce40992cb9554bbd4d9d2..7836a30e258e6ec2b74833e0bb504f08aa6979e5 100644
(file)
--- a/
v7/src/runtime/vector.scm
+++ b/
v7/src/runtime/vector.scm
@@
-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 v
ector
index) element)
(loop (fix:+ index 1))))))
(define (vector-filled? vector element)