aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-macros.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-21 13:47:27 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-21 13:47:27 +0000
commit8672c9ca7ea2f66a0ab372697c258dac5bb43382 (patch)
tree8fdc79e82c7eed2cd2cee3bd838c352baae8727f /src/interp/sys-macros.lisp
parent97463cc77bbec1c33f46ceb44584a180264682c3 (diff)
downloadopen-axiom-8672c9ca7ea2f66a0ab372697c258dac5bb43382.tar.gz
* boot/utility.boot (objectMember?): Don't rely non tail recursion
removal. (reverse): Define. * boot/tokens.boot: Don't rename reverse anymore. * boot/ast.boot: Generate reverse forms instead of REVERSE.
Diffstat (limited to 'src/interp/sys-macros.lisp')
-rw-r--r--src/interp/sys-macros.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/sys-macros.lisp b/src/interp/sys-macros.lisp
index cda2479d..33e18eb3 100644
--- a/src/interp/sys-macros.lisp
+++ b/src/interp/sys-macros.lisp
@@ -977,7 +977,7 @@
(LIST 'THETACHECK G (MKQ G)(MKQ OP)))
(G) ))
(COND ((EQ OP 'CONS)
- (SETQ EXIT (LIST 'NREVERSE0 EXIT))))
+ (SETQ EXIT (LIST '|reverse!| EXIT))))
;; CONSCODE= code which conses a member onto the list
(SETQ VALUE
(COND ((EQ Y 'NO_THETA_PROPERTY)