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 | 496ed52a68f07e1d8b25d772abb9dae9e9b36aa4 (patch) | |
tree | dbd1e5a573819c42a192647ffab6877ef2f1a9b0 | |
parent | 74265d200f0854a2be92588c600076558cee2f59 (diff) | |
download | txr-496ed52a68f07e1d8b25d772abb9dae9e9b36aa4.tar.gz txr-496ed52a68f07e1d8b25d772abb9dae9e9b36aa4.tar.bz2 txr-496ed52a68f07e1d8b25d772abb9dae9e9b36aa4.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.
-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))))))) |