]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/thumbs.el (thumbs-conversion-program): Simplify.
authorGlenn Morris <rgm@gnu.org>
Sun, 21 Mar 2021 16:15:51 +0000 (09:15 -0700)
committerGlenn Morris <rgm@gnu.org>
Sun, 21 Mar 2021 16:15:51 +0000 (09:15 -0700)
/usr/bin is (normally) always in PATH, and this need not be absolute,
so the executable-find is unnecesary.

lisp/thumbs.el

index e43d13d703f8c8c730789275f9cfed4af6fe5b13..3e7c9124e2d21d1011909338fcc1f6a1e7560737 100644 (file)
@@ -93,11 +93,12 @@ When it reaches that size (in bytes), a warning is sent."
 ;; customize this value to the absolute filename.
 (defcustom thumbs-conversion-program
   (if (eq system-type 'windows-nt)
+      ;; FIXME is this necessary, or can a sane PATHEXE be assumed?
+      ;; Eg find-program does not do this.
       "convert.exe"
-    (or (executable-find "convert")
-        "/usr/bin/convert"))
+    "convert")
   "Name of conversion program for thumbnails generation.
-It must be \"convert\"."
+This must be the ImageMagick \"convert\" utility."
   :type 'string
   :version "28.1")