summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell-quasiquote.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-quasiquote.el b/shell-quasiquote.el
index b8e9008..bd8c418 100644
--- a/shell-quasiquote.el
+++ b/shell-quasiquote.el
@@ -110,7 +110,7 @@ separating spaces."
;; ,foo
(`(,`\, ,form) `(shqq--quote-atom ,form))
;; ,@foo
- (`,@,form `(mapconcat #'shqq--quote-atom ,form " "))
+ (`(,`\,@ ,form) `(mapconcat #'shqq--quote-atom ,form " "))
(_
(error "Bad shqq part: %S" part))))))
parts)))