mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Don't mark messages as "unsaved" when printing.
`ps-print-buffer' notes that a buffer is unsaved unless `buffer-modified-p' returns `nil', so ensure that it does.
This commit is contained in:
parent
cd03f21447
commit
6f388fa711
1 changed files with 1 additions and 0 deletions
|
@ -82,6 +82,7 @@ Optional OUTPUT allows passing a list of flags to muttprint."
|
|||
|
||||
(defun notmuch-print-message (msg)
|
||||
"Print a message using the user-selected mechanism."
|
||||
(set-buffer-modified-p nil)
|
||||
(funcall notmuch-print-mechanism msg))
|
||||
|
||||
(provide 'notmuch-print)
|
||||
|
|
Loading…
Reference in a new issue