diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2025-03-16 16:22:15 -0400 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2025-03-16 16:22:15 -0400 |
| commit | cc170c2f48c9e286e38a8afc14007ccdc46955ed (patch) | |
| tree | 6af295a2d2ee84265d13347ef02ef5aa22332ce4 | |
| parent | 99f8162e00f8882240c999c3ab676bba9b472f5a (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.el | 2 |
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))) |
