diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-07-17 20:09:07 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-07-17 20:09:07 -0700 |
commit | 8da7fddb7940f59b959f8e3b3d41ffae192f212d (patch) | |
tree | dbd1e5a573819c42a192647ffab6877ef2f1a9b0 /tests | |
parent | d3fd04b03a9fb48ba8d0323d7ac1f45c2645c7b1 (diff) | |
download | txr-8da7fddb7940f59b959f8e3b3d41ffae192f212d.tar.gz txr-8da7fddb7940f59b959f8e3b3d41ffae192f212d.tar.bz2 txr-8da7fddb7940f59b959f8e3b3d41ffae192f212d.zip |
tests: remove macro-time hack from man-or-boy test.
* tests/012/man-or-boy.tl (defun-cbn): We no longer need the
macro-time expression here to force the evaluation of the
defmacro form.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/012/man-or-boy.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/012/man-or-boy.tl b/tests/012/man-or-boy.tl index 596d6eb0..9c29e455 100644 --- a/tests/012/man-or-boy.tl +++ b/tests/012/man-or-boy.tl @@ -44,7 +44,7 @@ (with-gensyms (hidden-fun) ^(progn (defun ,hidden-fun ()) - (macro-time (defmacro ,name (. args) ^(cbn ,',hidden-fun ,*args))) + (defmacro ,name (. args) ^(cbn ,',hidden-fun ,*args)) (set (symbol-function ',hidden-fun) ,(make-cbn-fun 'lambda args ^(block ,name (let ((,name)) ,*body ,name))))))) |