aboutsummaryrefslogtreecommitdiff
path: root/src/interp/cstream.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/cstream.boot
parentbb81c833c0ff2ff8df936a0cd0182cf255729a41 (diff)
downloadopen-axiom-4dcf3f97d30a2b892716923ed4e916805ec87436.tar.gz
Replace FUNCALL with apply.
Diffstat (limited to 'src/interp/cstream.boot')
-rw-r--r--src/interp/cstream.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/cstream.boot b/src/interp/cstream.boot
index 76a96ca2..f9e5dada 100644
--- a/src/interp/cstream.boot
+++ b/src/interp/cstream.boot
@@ -74,7 +74,7 @@ incZip(g,f1,f2)==
incZip1(g,f1,f2) ==
StreamNull f1 => StreamNil
StreamNull f2 => StreamNil
- [FUNCALL(g,first f1,first f2),:incZip(g,rest f1,rest f2)]
+ [apply(g,[first f1,first f2]),:incZip(g,rest f1,rest f2)]
incAppend(x,y) ==
Delay(function incAppend1,[x,y])