[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] emacs-26 a19bfb7: Remove .art from the default list of Ima
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] emacs-26 a19bfb7: Remove .art from the default list of ImageMagick extensions |
Date: |
Wed, 20 Feb 2019 01:04:35 -0500 (EST) |
branch: emacs-26
commit a19bfb7a5e3557a69824cdbe7d414f5ef422555c
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>
Remove .art from the default list of ImageMagick extensions
It seems that .art files can be non-image files that
ImageMagick mistakenly treats as extremely large images.
Real .art images seem rare.
* lisp/image.el (imagemagick-enabled-types): Remove ART. (Bug#22289)
---
lisp/image.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/image.el b/lisp/image.el
index 3019da5..9d2045d 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -923,7 +923,7 @@ has no effect."
:version "24.3")
(defcustom imagemagick-enabled-types
- '(3FR ART ARW AVS BMP BMP2 BMP3 CAL CALS CMYK CMYKA CR2 CRW
+ '(3FR ARW AVS BMP BMP2 BMP3 CAL CALS CMYK CMYKA CR2 CRW
CUR CUT DCM DCR DCX DDS DJVU DNG DPX EXR FAX FITS GBR GIF
GIF87 GRB HRZ ICB ICO ICON J2C JNG JP2 JPC JPEG JPG JPX K25
KDC MIFF MNG MRW MSL MSVG MTV NEF ORF OTB PBM PCD PCDS PCL
@@ -957,7 +957,7 @@ has no effect."
:set (lambda (symbol value)
(set-default symbol value)
(imagemagick-register-types))
- :version "24.3")
+ :version "26.2") ; remove ART (bug#22289)
(imagemagick-register-types)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] emacs-26 a19bfb7: Remove .art from the default list of ImageMagick extensions,
Glenn Morris <=