diff options
author | colin <colin@cicadas.surf> | 2024-08-22 20:45:55 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-08-22 20:45:55 -0700 |
commit | 7bca96922a1dd9b7c68b5fe301cfb71e8d3dbded (patch) | |
tree | 380644b55b6db4f82ef0e744f6dee41ce0ab942e | |
parent | 1245131f02fc00f7b7ecd24f38da27ac25202a53 (diff) |
Fix bug in flatbind macroexpand
-rw-r--r-- | flatbind.lisp | 2 |
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 |