(with-temp-buffer
(let ((command (image-converter--value type :command))
formats)
- (when (zerop (apply #'call-process (car command) nil '(t nil) nil
- (append (cdr command)
- (image-converter--value type :probe))))
+ (when (and (executable-find (car command))
+ (zerop (apply #'call-process (car command) nil '(t nil) nil
+ (append (cdr command)
+ (image-converter--value type :probe)))))
(goto-char (point-min))
(when (re-search-forward "^-" nil t)
(forward-line 1)
formats)
;; Can't check return value; ImageMagick convert usually returns
;; a non-zero result on "-list format".
- (apply #'call-process (car command) nil '(t nil) nil
- (append (cdr command) (image-converter--value type :probe)))
+ (when (executable-find (car command))
+ (apply #'call-process (car command) nil '(t nil) nil
+ (append (cdr command) (image-converter--value type :probe))))
(goto-char (point-min))
(when (re-search-forward "^-" nil t)
(forward-line 1)
(with-temp-buffer
(let ((command (image-converter--value type :command))
formats)
- (when (zerop (apply #'call-process (car command) nil '(t nil) nil
- (append (cdr command)
- (image-converter--value type :probe))))
+ (when (and (executable-find (car command))
+ (zerop (apply #'call-process (car command) nil '(t nil) nil
+ (append (cdr command)
+ (image-converter--value type :probe)))))
(goto-char (point-min))
(when (re-search-forward "^ *-" nil t)
(forward-line 1)