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

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

[elpa] externals/shell-command+ 191435e6c5 04/13: Fix bug in 'shell-comm


From: ELPA Syncer
Subject: [elpa] externals/shell-command+ 191435e6c5 04/13: Fix bug in 'shell-command+-command-substitution'
Date: Thu, 25 Aug 2022 09:57:59 -0400 (EDT)

branch: externals/shell-command+
commit 191435e6c5f0ea70d49cd0947f3a20f34be0535f
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Fix bug in 'shell-command+-command-substitution'
---
 shell-command+.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/shell-command+.el b/shell-command+.el
index 453cee32d0..8b2ff42c07 100644
--- a/shell-command+.el
+++ b/shell-command+.el
@@ -308,7 +308,8 @@ PARSE, FORM and CONTEXT see `shell-command+-features'."
     (list parse
           (let ((fn (assoc name shell-command+-substitute-alist)))
             (if (and fn (not (eq mode 'literal)))
-                (apply-partially fn)
+                (lambda (command _beg _end)
+                  (funcall (cdr fn) command))
               form))
           context)))
 



reply via email to

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