branch: externals/shell-command+ commit 191435e6c5f0ea70d49cd0947f3a20f34be0535f Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@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)))