aboutsummaryrefslogtreecommitdiff
path: root/src/interp/clam.boot
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2015-12-24 18:05:41 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2015-12-24 18:05:41 -0800
commit4dcf3f97d30a2b892716923ed4e916805ec87436 (patch)
tree5b41b966349e3c4f9afacef3a2ad60a38d28a8c1 /src/interp/clam.boot
parentbb81c833c0ff2ff8df936a0cd0182cf255729a41 (diff)
downloadopen-axiom-4dcf3f97d30a2b892716923ed4e916805ec87436.tar.gz
Replace FUNCALL with apply.
Diffstat (limited to 'src/interp/clam.boot')
-rw-r--r--src/interp/clam.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/clam.boot b/src/interp/clam.boot
index c921e953..98b992b7 100644
--- a/src/interp/clam.boot
+++ b/src/interp/clam.boot
@@ -277,7 +277,7 @@ listTruncate(l,n) ==
lassocShiftWithFunction(x,l,fn) ==
y:= l
while cons? y repeat
- FUNCALL(fn,x,first first y) => return (result := first y)
+ apply(fn,[x,first first y]) => return (result := first y)
y:= rest y
result =>
if not sameObject?(y,l) then