comparison lisp/image.el @ 56189:d2086c9c0507

(image-library-alist): Rewrite docstring in active voice.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 21 Jun 2004 21:52:28 +0000
parents 5b3f0e4cf47f
children 090c23fa222c 59dcbfe97385
comparison
equal deleted inserted replaced
56188:7997f11a2377 56189:d2086c9c0507
52 (defvar image-library-alist nil 52 (defvar image-library-alist nil
53 "Alist of image types vs external libraries needed to display them. 53 "Alist of image types vs external libraries needed to display them.
54 54
55 Each element is a list (IMAGE-TYPE LIBRARY...), where the car is a symbol 55 Each element is a list (IMAGE-TYPE LIBRARY...), where the car is a symbol
56 representing a supported image type, and the rest are strings giving 56 representing a supported image type, and the rest are strings giving
57 alternate filenames for the corresponding external libraries to load. 57 alternate filenames for the corresponding external libraries.
58 They are tried in the order they appear on the list; if none of them can 58
59 be loaded, the running session of Emacs won't display the image type. 59 Emacs tries to load the libraries in the order they appear on the
60 No entries are needed for pbm and xbm images; they're always supported.") 60 list; if none is loaded, the running session of Emacs won't
61 support the image type. Types 'pbm and 'xbm don't need to be
62 listed; they're always supported.")
61 ;;;###autoload (put 'image-library-alist 'risky-local-variable t) 63 ;;;###autoload (put 'image-library-alist 'risky-local-variable t)
62 64
63 (defun image-jpeg-p (data) 65 (defun image-jpeg-p (data)
64 "Value is non-nil if DATA, a string, consists of JFIF image data. 66 "Value is non-nil if DATA, a string, consists of JFIF image data.
65 We accept the tag Exif because that is the same format." 67 We accept the tag Exif because that is the same format."