diff options
| author | Glenn Morris | 2012-02-06 23:37:44 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-02-06 23:37:44 -0800 |
| commit | 222c901e18b5c4ec9ebe0a3be4177390a9a0b0de (patch) | |
| tree | bf42571a99ace6601ebd45b35f7afbbf75d79fe7 | |
| parent | 0992bd9c06b90c8f316187467bcc005cbe51050e (diff) | |
| download | emacs-222c901e18b5c4ec9ebe0a3be4177390a9a0b0de.tar.gz emacs-222c901e18b5c4ec9ebe0a3be4177390a9a0b0de.zip | |
Further doc fix for imagemagick-types-inhibit
| -rw-r--r-- | lisp/image.el | 5 |
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." | |||
| 688 | This should be a list of symbols, each of which has the same | 688 | This should be a list of symbols, each of which has the same |
| 689 | name as one of the format tags used internally by ImageMagick; | 689 | name as one of the format tags used internally by ImageMagick; |
| 690 | see `imagemagick-types'. Entries in this list are excluded from | 690 | see `imagemagick-types'. Entries in this list are excluded from |
| 691 | being registered by `imagemagick-register-types'. | 691 | being registered by `imagemagick-register-types', so if you change |
| 692 | this variable you must do so before you call that function. | ||
| 692 | 693 | ||
| 693 | If Emacs is compiled without ImageMagick, this variable has no effect." | 694 | If 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 | ||