Remove superfluous string

This commit is contained in:
Bram Schoenmakers 2023-07-18 13:07:15 +02:00
parent ad450efe20
commit 299204b3ac
2 changed files with 2 additions and 2 deletions

View File

@ -609,7 +609,7 @@ An improved version was [[https://github.com/xenodium/dwim-shell-command/commit/
(interactive (append (list (read-command "Command: "))
(my/read-list)))
(mapc (lambda (arg)
(with-demoted-errors "Error: %S"
(with-demoted-errors
(funcall command arg)))
arguments))
#+end_src

View File

@ -25,6 +25,6 @@ value."
(interactive (append (list (read-command "Command: "))
(my/read-list)))
(mapc (lambda (arg)
(with-demoted-errors "Error: %S"
(with-demoted-errors
(funcall command arg)))
arguments))