aboutsummaryrefslogtreecommitdiff
path: root/src/interp/scan.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-19 02:13:55 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-19 02:13:55 +0000
commitba495f17f8e3a8b780f038fd6f2d5877ccc2476e (patch)
tree4b51a93a73c409ae36fbe494091a2a47bb800087 /src/interp/scan.boot
parentabd2b49e66adf06d16d6664526f693e67bdaf719 (diff)
downloadopen-axiom-ba495f17f8e3a8b780f038fd6f2d5877ccc2476e.tar.gz
cleanup
Diffstat (limited to 'src/interp/scan.boot')
-rw-r--r--src/interp/scan.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/scan.boot b/src/interp/scan.boot
index c39ea640..4aacb056 100644
--- a/src/interp/scan.boot
+++ b/src/interp/scan.boot
@@ -182,7 +182,7 @@ scanInsert(s,d) ==
k:=0
while l <= #(u.k) repeat
k := k+1
- v := MAKE_-VEC(n+1)
+ v := newVector(n+1)
for i in 0..k-1 repeat
VEC_-SETELT(v,i,u.i)
VEC_-SETELT(v,k,s)
@@ -194,8 +194,8 @@ scanInsert(s,d) ==
scanDictCons()==
l:= HKEYS scanKeyTable
d :=
- a := MAKE_-VEC(256)
- b := MAKE_-VEC(1)
+ a := newVector 256
+ b := newVector 1
VEC_-SETELT(b,0,MAKE_-CVEC 0)
for i in 0..255 repeat
VEC_-SETELT(a,i,b)