]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename the new convert-images-externally variable
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 30 Sep 2019 04:00:52 +0000 (06:00 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 30 Sep 2019 04:00:52 +0000 (06:00 +0200)
* doc/emacs/files.texi (File Conveniences): Adjust documentation.

* lisp/image.el (image-use-external-converter): Rename from
convert-images-externally.

doc/emacs/files.texi
lisp/image.el

index 35ba30adb3404679b2d200d923f5eaf274311447..0ff64d529c02da4133e5ec4f056411a98ed93de5 100644 (file)
@@ -2161,9 +2161,9 @@ never be rendered using ImageMagick, regardless of the value of
 but Emacs should not).  To disable ImageMagick entirely, change
 @code{imagemagick-types-inhibit} to @code{t}.
 
-@vindex convert-images-externally
+@vindex image-use-external-converter
   If Emacs doesn't have native support for the image format in
-question, and @code{convert-images-externally} is non-@code{nil},
+question, and @code{image-use-external-converter} is non-@code{nil},
 Emacs will try to determine whether there are external utilities that
 can be used to transform the image in question to @acronym{PNG} before
 displaying.  GraphicsMagick, ImageMagick and @command{ffmpeg} are
index 07ffefcbc5be712b290028a99c61a5e9f1c54a44..eaa6ed3b0ea0742a76abfdb8e2a34fb2ce46f7d7 100644 (file)
@@ -141,7 +141,7 @@ based on the font pixel size."
                  (const :tag "Automatically compute" auto))
   :version "26.1")
 
-(defcustom convert-images-externally nil
+(defcustom image-use-external-converter nil
   "If non-nil, `create-image' will use external converters for exotic formats.
 Emacs handles most of the common image formats (SVG, JPEG, PNG, GIF
 and some others) internally, but images that don't have native
@@ -386,7 +386,7 @@ Optional DATA-P non-nil means SOURCE is a string containing image data."
                   (image-type-from-data source)
                 (or (image-type-from-file-header source)
                     (image-type-from-file-name source)
-                     (and convert-images-externally
+                     (and image-use-external-converter
                           (progn
                             (require 'image-converter)
                             (image-convert-p source))))))