aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/image.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/image.el')
-rw-r--r--lisp/image.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/image.el b/lisp/image.el
index c4b51716dad..8c52db149a0 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -686,13 +686,16 @@ The minimum delay between successive frames is 0.01s."
686 '(C HTML HTM TXT PDF) 686 '(C HTML HTM TXT PDF)
687 "ImageMagick types that Emacs should not use ImageMagick to handle. 687 "ImageMagick types that Emacs should not use ImageMagick to handle.
688This should be a list of symbols, each of which has the same 688This should be a list of symbols, each of which has the same
689names as one of the format tags used internally by ImageMagick; 689name as one of the format tags used internally by ImageMagick;
690see `imagemagick-types'. Entries in this list are excluded from 690see `imagemagick-types'. Entries in this list are excluded from
691being registered by `imagemagick-register-types'. 691being registered by `imagemagick-register-types', so if you change
692this variable you must do so before you call that function.
692 693
693If Emacs is compiled without ImageMagick, this variable has no effect." 694If Emacs is compiled without ImageMagick, this variable has no effect."
694 :type '(choice (const :tag "Let ImageMagick handle all types it can" nil) 695 :type '(choice (const :tag "Let ImageMagick handle all types it can" nil)
695 (repeat symbol)) 696 (repeat symbol))
697 ;; Ideally, would have a :set function that checks if we already did
698 ;; imagemagick-register-types, and if so undoes it, then redoes it.
696 :version "24.1" 699 :version "24.1"
697 :group 'image) 700 :group 'image)
698 701