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: ")) (interactive (append (list (read-command "Command: "))
(my/read-list))) (my/read-list)))
(mapc (lambda (arg) (mapc (lambda (arg)
(with-demoted-errors "Error: %S" (with-demoted-errors
(funcall command arg))) (funcall command arg)))
arguments)) arguments))
#+end_src #+end_src

View file

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