summaryrefslogtreecommitdiff
path: root/llama-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'llama-tests.el')
-rw-r--r--llama-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/llama-tests.el b/llama-tests.el
index a139005..4c32db5 100644
--- a/llama-tests.el
+++ b/llama-tests.el
@@ -318,8 +318,8 @@
(defmacro llama-test--flatten (expr)
(when (vectorp expr)
(setq expr (mapcan (lambda (e)
- (if (vectorp e) (append e ()) (list e)))
- (append expr ()))))
+ (if (vectorp e) (append e ()) (list e)))
+ (append expr ()))))
(let ((body ()))
(while expr
(if (listp expr) (push (pop expr) body) (push expr body) (setq expr nil)))