* mu4e-utils.el: better runtime check for imagemagick

This commit is contained in:
djcb
2012-06-06 11:08:05 +03:00
parent d23277f3b3
commit bbbc8538ea

View File

@ -736,8 +736,10 @@ mu4e logs some of its internal workings to a log-buffer. See
"Display image IMG at point; optionally specify
MAXWIDTH. Function tries to use imagemagick if available (ie.,
emacs was compiled with inmagemagick support); otherwise MAXWIDTH
is ignored."
(let* ((have-im (boundp 'imagemagick))
is ignored."
(let* ((have-im (and (fboundp 'imagemagick-types)
(imagemagick-types))) ;; hmm, should check for specific type
(identify (and have-im maxwidth
(executable-find mu4e-imagemagick-identify)))
(props (and identify (shell-command-to-string
(format "%s -format '%%w' %s"