aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-spec1.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-01-25 05:21:41 +0000
committerdos-reis <gdr@axiomatics.org>2008-01-25 05:21:41 +0000
commit82b4511dffa72a7521bd751ccb7d220ed4f2f7ae (patch)
tree57de30c4d1472a7b0e41275f9f5c01fd82516684 /src/interp/i-spec1.boot
parent3457ed0779198d8ecec53f4c80b97313e82fdc11 (diff)
downloadopen-axiom-82b4511dffa72a7521bd751ccb7d220ed4f2f7ae.tar.gz
Fix AW/272
* interp/i-spec1.boot (compileADEFBody): Don't evaluate unnamed functions. Compile them instead. * testsuite/interpreter/aw-272.input: New.
Diffstat (limited to 'src/interp/i-spec1.boot')
-rw-r--r--src/interp/i-spec1.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/i-spec1.boot b/src/interp/i-spec1.boot
index 9190d67d..14c28dcd 100644
--- a/src/interp/i-spec1.boot
+++ b/src/interp/i-spec1.boot
@@ -178,8 +178,8 @@ compileADEFBody(t,vars,types,body,computedResultType) ==
--
-- MCD 13/3/96
if not $definingMap and ($genValue or $compilingMap) then
- fun := ["function",["LAMBDA",[:vars,'envArg],body]]
- code := wrap timedEVALFUN ['LIST,fun]
+ fun := [$mapName,["LAMBDA",[:vars,'envArg],body]]
+ code := wrap compileInteractive fun
else
$freeVariables := []
$boundVariables := [minivectorName,:vars]