projects
/
fiveam.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea7021b
)
def-suite should expand into an (eval-when (:always) ...) not a progn
author
Marco Baringer
<mb@bese.it>
Tue, 14 Aug 2007 17:36:09 +0000
(19:36 +0200)
committer
Marco Baringer
<mb@bese.it>
Tue, 14 Aug 2007 17:36:09 +0000
(19:36 +0200)
src/suite.lisp
patch
|
blob
|
history
diff --git
a/src/suite.lisp
b/src/suite.lisp
index
c09c071
..
14427c6
100644
(file)
--- a/
src/suite.lisp
+++ b/
src/suite.lisp
@@
-23,7
+23,7
@@
IN (a symbol), if provided, causes this suite te be nested in the
suite named by IN. NB: This macro is built on top of make-suite,
as such it, like make-suite, will overrwrite any existing suite
named NAME."
- `(progn
+ `(eval-when (:compile-toplevel :load-toplevel :execute)
(make-suite ',name
,@(when description `(:description ,description))
,@(when in `(:in ',in)))