summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2025-03-16 16:22:15 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2025-03-16 16:22:15 -0400
commitcc170c2f48c9e286e38a8afc14007ccdc46955ed (patch)
tree6af295a2d2ee84265d13347ef02ef5aa22332ce4
parent99f8162e00f8882240c999c3ab676bba9b472f5a (diff)
shell-quasiquote.el (shqq): Don't rely on `,@FOO` as a QPATexternals/shell-quasiquote
Pcase does not allow them any more.
-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)))