Skip to content

Commit

Permalink
* mu4e-view.el: don't create new view buffers all the time
Browse files Browse the repository at this point in the history
  • Loading branch information
djcb committed Jun 24, 2012
1 parent 4b22853 commit fe75557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emacs/mu4e-view.el
Expand Up @@ -207,7 +207,7 @@ REFRESH is for re-showing an already existing message.
As a side-effect, a message that is being viewed loses its 'unread'
marking if it still had that."
(let ((buf (generate-new-buffer mu4e~view-buffer-name)))
(let ((buf (get-buffer-create mu4e~view-buffer-name)))
(with-current-buffer buf
(mu4e-view-mode)
(let ((inhibit-read-only t))
Expand Down

0 comments on commit fe75557

Please sign in to comment.