Made the 'descend' mode work more than one iteration deep, for real this time.

This commit is contained in:
Elf M. Sternberg 2016-05-02 21:28:02 -07:00
parent 514f9b0d37
commit 8bee006ddd
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ _annotate = (ConsList) ->
# frustrating.
item = if pairp(v[p]) then v[p] else
if (d and vectorp(v[p])) then vectorToList(v[p], 0, d) else v[p]
cons(item, vectorToList(v, p + 1))
cons(item, vectorToList(v, p + 1, d))
list = (v...) ->
ln = v.length