aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-02-06 23:37:44 -0800
committerGlenn Morris2012-02-06 23:37:44 -0800
commit222c901e18b5c4ec9ebe0a3be4177390a9a0b0de (patch)
treebf42571a99ace6601ebd45b35f7afbbf75d79fe7
parent0992bd9c06b90c8f316187467bcc005cbe51050e (diff)
downloademacs-222c901e18b5c4ec9ebe0a3be4177390a9a0b0de.tar.gz
emacs-222c901e18b5c4ec9ebe0a3be4177390a9a0b0de.zip
Further doc fix for imagemagick-types-inhibit
-rw-r--r--lisp/image.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el
index 53df590b091..8c52db149a0 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -688,11 +688,14 @@ The minimum delay between successive frames is 0.01s."
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
689name 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