aboutsummaryrefslogtreecommitdiff
path: root/src/boot/ast.boot
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2015-12-26 20:09:37 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2015-12-26 20:10:26 -0800
commitba0eeb3c591ebb8e51a5ea2679749e4ceca95e08 (patch)
tree70d11889dc5f474598e78b5210af82cb5dec77cb /src/boot/ast.boot
parentd5011e370ab68f22c646683740e630193e8cd8d1 (diff)
downloadopen-axiom-ba0eeb3c591ebb8e51a5ea2679749e4ceca95e08.tar.gz
Rename 'lastItem' to 'last'. Remove the macro definition.
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)]