aboutsummaryrefslogtreecommitdiff
path: root/src/interp/c-util.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-08-12 14:39:03 +0000
committerdos-reis <gdr@axiomatics.org>2011-08-12 14:39:03 +0000
commitb112067f55188644f3202ea0d992e81bacc64f04 (patch)
tree2c3f4e2c9e77ed6491a6c988470017a43089ad22 /src/interp/c-util.boot
parent1fcea6ceeb3655d1196238588781cdba193f5589 (diff)
downloadopen-axiom-b112067f55188644f3202ea0d992e81bacc64f04.tar.gz
* boot/ast.boot (shoeCompTran1): Translate extended vector-forms.
* interp/c-util.boot: Use vector instead of LIST2VEC. * interp/define.boot: Likewise. * interp/i-coerce.boot: Likewise. * interp/i-coerfn.boot: Likewise. * interp/i-funsel.boot: Likewise. * interp/i-map.boot: Likewise. * interp/i-special.boot: Likewise. * interp/interop.boot: Likewise. * interp/nruncomp.boot: Likewise. * interp/slam.boot: Likewise.
Diffstat (limited to 'src/interp/c-util.boot')
-rw-r--r--src/interp/c-util.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/c-util.boot b/src/interp/c-util.boot
index 1d281ea8..f7fd2dc4 100644
--- a/src/interp/c-util.boot
+++ b/src/interp/c-util.boot
@@ -1041,7 +1041,7 @@ sublisV(p,e) ==
suba(p,e) ==
string? e => e
-- no need to descend vectors unless they are categories
- categoryObject? e => LIST2VEC [suba(p,e.i) for i in 0..maxIndex e]
+ categoryObject? e => vector [suba(p,e.i) for i in 0..maxIndex e]
e isnt [.,:.] => (y:= ASSQ(e,p) => rest y; e)
u:= suba(p,first e)
v:= suba(p,rest e)