Fixes bug 181679: vec-graph not working

This commit is contained in:
Abdulaziz Ghuloum 2008-01-10 00:40:39 -05:00
parent 4444496609
commit 9e06ec35bf
2 changed files with 2 additions and 2 deletions

View File

@ -468,7 +468,7 @@
(define (vec-graph x i j)
(unless (fx= i j)
(graph (vector-ref x i))
(vec-graph x (fxadd1 i) j h)))
(vec-graph x (fxadd1 i) j)))
(define (vec-dynamic x i j)
(unless (fx= i j)
(dynamic (vector-ref x i))

View File

@ -1 +1 @@
1335
1336