diff options
| author | Juanma Barranquero | 2004-06-21 21:52:28 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2004-06-21 21:52:28 +0000 |
| commit | 143b8c2731a5a2dca7fb321a013230380ed0dbb2 (patch) | |
| tree | 51aea8f6fb2686eadcdebdb2dda47585584ad31d | |
| parent | 2b3cb54db43dbb757d60cde2d78ee654369818a7 (diff) | |
| download | emacs-143b8c2731a5a2dca7fb321a013230380ed0dbb2.tar.gz emacs-143b8c2731a5a2dca7fb321a013230380ed0dbb2.zip | |
(image-library-alist): Rewrite docstring in active voice.
| -rw-r--r-- | lisp/image.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/image.el b/lisp/image.el index 88e38186d7b..ad8fcafe8de 100644 --- a/lisp/image.el +++ b/lisp/image.el | |||
| @@ -54,10 +54,12 @@ a non-nil value, TYPE is the image's type.") | |||
| 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) |