summaryrefslogtreecommitdiff
path: root/lisp/thumbs.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-03-20 01:16:26 +0100
committerStefan Kangas <stefan@marxist.se>2021-03-20 01:26:21 +0100
commit0eeb865aae3373343c18b7674fde91f280edafef (patch)
tree77357b89a099ed9215fed815da820cef56548d48 /lisp/thumbs.el
parent7607d1c4e854cf55701aef3446092d3f510697ce (diff)
downloademacs-0eeb865aae3373343c18b7674fde91f280edafef.tar.gz
Assume something more recent than X11R6
* lisp/bindings.el: * lisp/menu-bar.el: * lisp/printing.el: * lisp/thumbs.el (thumbs-conversion-program): Assume we have something more recent than X11R6.
Diffstat (limited to 'lisp/thumbs.el')
-rw-r--r--lisp/thumbs.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/thumbs.el b/lisp/thumbs.el
index c6a9a67b3f3..8d79ceda5b8 100644
--- a/lisp/thumbs.el
+++ b/lisp/thumbs.el
@@ -95,10 +95,11 @@ When it reaches that size (in bytes), a warning is sent."
(if (eq system-type 'windows-nt)
"convert.exe"
(or (executable-find "convert")
- "/usr/X11R6/bin/convert"))
+ "/usr/bin/convert"))
"Name of conversion program for thumbnails generation.
It must be \"convert\"."
- :type 'string)
+ :type 'string
+ :version "28.1")
(defcustom thumbs-setroot-command
"xloadimage -onroot -fullscreen *"