]> git.eshelyaron.com Git - emacs.git/commitdiff
Recognize pngnq or pngnq-s9
authorMark Oteiza <mvoteiza@udel.edu>
Wed, 14 Dec 2016 21:34:12 +0000 (16:34 -0500)
committerMark Oteiza <mvoteiza@udel.edu>
Wed, 14 Dec 2016 21:34:12 +0000 (16:34 -0500)
* lisp/image-dired.el (image-dired-cmd-pngnq-program): Also consider
pngnq-s9 as a possible executable.

lisp/image-dired.el

index 066a994916683da705ef899981943275518894c7..61cf89c935d776ed591c4f4cef0b06b2ee2c09f2 100644 (file)
@@ -255,9 +255,13 @@ is replaced by the file name of the temporary file."
   :type 'string
   :group 'image-dired)
 
-(defcustom image-dired-cmd-pngnq-program (executable-find "pngnq")
+(defcustom image-dired-cmd-pngnq-program
+  (or (executable-find "pngnq")
+      (executable-find "pngnq-s9"))
   "The file name of the `pngnq' program.
-It quantizes colors of PNG images down to 256 colors."
+It quantizes colors of PNG images down to 256 colors or fewer
+using the Neuquant procedure."
+  :version "26.1"
   :type '(choice (const :tag "Not Set" nil) string)
   :group 'image-dired)