diff options
| author | Dave Love <fx@gnu.org> | 2001-12-18 16:45:17 +0000 |
|---|---|---|
| committer | Dave Love <fx@gnu.org> | 2001-12-18 16:45:17 +0000 |
| commit | 228b0b9a316a2adf4d97c7ca2a840bb4a2f55d1b (patch) | |
| tree | 84fc9384b818b289692cd86db789dcf880c6a9a2 | |
| parent | df4e8a11298b0fa49b3f2a0df1697fe44b838d22 (diff) | |
| download | emacs-228b0b9a316a2adf4d97c7ca2a840bb4a2f55d1b.tar.gz | |
(image-file-name-extensions): Add pnm. Doc fix.
(image-file-name-regexps): Doc fix.
| -rw-r--r-- | lisp/image-file.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/image-file.el b/lisp/image-file.el index 7875314d335..e5f1203e2b0 100644 --- a/lisp/image-file.el +++ b/lisp/image-file.el @@ -38,15 +38,15 @@ ;;;###autoload (defcustom image-file-name-extensions - '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm") + '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm") "*A list of image-file filename extensions. Filenames having one of these extensions are considered image files, in addition to those matching `image-file-name-regexps'. See `auto-image-file-mode'; if `auto-image-file-mode' is enabled, setting this variable directly does not take effect unless -`auto-image-file-mode' is re-enabled; this happens automatically the -variable is set using \\[customize]." +`auto-image-file-mode' is re-enabled; this happens automatically when +the variable is set using \\[customize]." :type '(repeat string) :set (lambda (sym val) (set-default sym val) @@ -64,8 +64,8 @@ in addition to those with an extension in `image-file-name-extensions'. See function `auto-image-file-mode'; if `auto-image-file-mode' is enabled, setting this variable directly does not take effect unless -`auto-image-file-mode' is re-enabled; this happens automatically the -variable is set using \\[customize]." +`auto-image-file-mode' is re-enabled; this happens automatically when +the variable is set using \\[customize]." :type '(repeat regexp) :set (lambda (sym val) (set-default sym val) |
