]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: `with-current-notmuch-show-message' should not leak `coding-system-for-read'
authorDavid Edmondson <dme@dme.org>
Tue, 18 Nov 2014 07:03:17 +0000 (07:03 +0000)
committerDavid Bremner <david@tethera.net>
Wed, 26 Nov 2014 17:26:07 +0000 (18:26 +0100)
`with-current-notmuch-show-message' applies a `no-conversion' coding
system when reading a raw message from notmuch. That coding system
should _not_ be applied when the body of the macro is evaluated, as it
can cause file operations used during that evaluation to incorrectly
apply the `no-conversion' coding system.

This was discovered when a user's .signature file contained non-ASCII
characters. When a message is forwarded, the `no-conversion' coding
system was applied to the reading of the .signature file, resulting in
raw rather than UTF-8 interpretation of the data.

emacs/notmuch-show.el

index 4035fe88875fda28cb5c8ad672d144ed995848b2..b8cfbb8a3286540d7bb57caf8cf62a88f7032bd8 100644 (file)
@@ -241,9 +241,9 @@ every user interaction with notmuch."
        (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*"))))
          (with-current-buffer buf
           (let ((coding-system-for-read 'no-conversion))
-            (call-process notmuch-command nil t nil "show" "--format=raw" id)
-            ,@body)
-          (kill-buffer buf))))))
+            (call-process notmuch-command nil t nil "show" "--format=raw" id))
+          ,@body)
+        (kill-buffer buf)))))
 
 (defun notmuch-show-turn-on-visual-line-mode ()
   "Enable Visual Line mode."