summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-08-22 20:45:55 -0700
committercolin <colin@cicadas.surf>2024-08-22 20:45:55 -0700
commit7bca96922a1dd9b7c68b5fe301cfb71e8d3dbded (patch)
tree380644b55b6db4f82ef0e744f6dee41ce0ab942e
parent1245131f02fc00f7b7ecd24f38da27ac25202a53 (diff)
Fix bug in flatbind macroexpandHEADmain
-rw-r--r--flatbind.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/flatbind.lisp b/flatbind.lisp
index 9a76ff3..a741f76 100644
--- a/flatbind.lisp
+++ b/flatbind.lisp
@@ -67,7 +67,7 @@
(setf expanded
(ecase tag
(:simple
- (cond ((null expanded) form)
+ (cond ((null expanded) `(progn ,form))
((eq 'cl:progn (first expanded))
`(progn ,form ,@(rest expanded)))
(t