Skip to content

Commit

Permalink
* mu4e: fix mu4e-message
Browse files Browse the repository at this point in the history
  • Loading branch information
djcb committed Jun 3, 2013
1 parent 13efc74 commit 34c84a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mu4e/mu4e-utils.el
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ an absolute path."
"Like `message', but prefixed with mu4e.
If we're waiting for user-input or if there's some message in the
echo area, don't show anything."
(unless (or (active-minibuffer-window) (current-message))
(unless (or (active-minibuffer-window))
(message "%s" (apply 'mu4e-format frm args))))

(defun mu4e-error (frm &rest args)
Expand Down Expand Up @@ -920,9 +920,9 @@ is ignored."
(create-image imgpath 'imagemagick))
(create-image imgpath))))
;;(message "DISPLAY: %S %S" imgpath img)
(when img
(when img
(newline)
(insert-image img imgpath nil t))))
(insert-image img))))


(defun mu4e-hide-other-mu4e-buffers ()
Expand Down

0 comments on commit 34c84a1

Please sign in to comment.