emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/shell-quasiquote cc170c2f48: shell-quasiquote.el (shqq)


From: Stefan Monnier
Subject: [elpa] externals/shell-quasiquote cc170c2f48: shell-quasiquote.el (shqq): Don't rely on `, @FOO` as a QPAT
Date: Sun, 16 Mar 2025 16:22:39 -0400 (EDT)

branch: externals/shell-quasiquote
commit cc170c2f48c9e286e38a8afc14007ccdc46955ed
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    shell-quasiquote.el (shqq): Don't rely on `,@FOO` as a QPAT
    
    Pcase does not allow them any more.
---
 shell-quasiquote.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shell-quasiquote.el b/shell-quasiquote.el
index b8e9008db8..bd8c4182b3 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]