diff options
| author | Joakim Verona | 2012-02-10 08:29:52 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-02-10 08:29:52 +0100 |
| commit | db2e8ff4fd52d6a06cef414787fd031cc26d43fa (patch) | |
| tree | c0e6fe54a70be21c9efa1f34040ce08499754e74 /lisp/image.el | |
| parent | 8c5c7f5afa968d06efb6788cf680d5463c389d85 (diff) | |
| parent | 667ced3a2d224b0f2ab3f2da26468791252c234a (diff) | |
| download | emacs-db2e8ff4fd52d6a06cef414787fd031cc26d43fa.tar.gz emacs-db2e8ff4fd52d6a06cef414787fd031cc26d43fa.zip | |
upstream
Diffstat (limited to 'lisp/image.el')
| -rw-r--r-- | lisp/image.el | 7 |
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. |
| 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 | names 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 | ||