* mu4e-utils.el: better runtime check for imagemagick
This commit is contained in:
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user