mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs/notmuch-show.el: Avoid passing unintended format strings to `message'
If the text being stashed included %, `message' was unhappy and complained.
This commit is contained in:
parent
f7c957f4de
commit
f920ff59b9
1 changed files with 2 additions and 2 deletions
|
@ -917,8 +917,8 @@ All currently available key bindings:
|
|||
:group 'notmuch)
|
||||
|
||||
(defun notmuch-show-do-stash (text)
|
||||
(kill-new text)
|
||||
(message (concat "Saved: " text)))
|
||||
(kill-new text)
|
||||
(message "Saved: %s" text))
|
||||
|
||||
(defun notmuch-show-stash-cc ()
|
||||
"Copy CC field of current message to kill-ring."
|
||||
|
|
Loading…
Reference in a new issue