aboutsummaryrefslogtreecommitdiff
path: root/src/boot/ast.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/ast.boot')
-rw-r--r--src/boot/ast.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/ast.boot b/src/boot/ast.boot
index 986338f3..253002a9 100644
--- a/src/boot/ast.boot
+++ b/src/boot/ast.boot
@@ -1475,7 +1475,7 @@ translateForm x ==
x isnt [.,:.] => x
x.op is 'QUOTE => x
x.op is 'apply and x.args is [fun,:args] =>
- lastItem args = 'NIL =>
+ last args = 'NIL =>
['FUNCALL,:listMap!(butLast! x.args,function translateForm)]
args is [['LIST,:ys]] =>
['FUNCALL,translateForm fun,:listMap!(ys, function translateForm)]