aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-12-18 16:45:17 +0000
committerDave Love2001-12-18 16:45:17 +0000
commit228b0b9a316a2adf4d97c7ca2a840bb4a2f55d1b (patch)
tree84fc9384b818b289692cd86db789dcf880c6a9a2
parentdf4e8a11298b0fa49b3f2a0df1697fe44b838d22 (diff)
downloademacs-228b0b9a316a2adf4d97c7ca2a840bb4a2f55d1b.tar.gz
emacs-228b0b9a316a2adf4d97c7ca2a840bb4a2f55d1b.zip
(image-file-name-extensions): Add pnm. Doc fix.
(image-file-name-regexps): Doc fix.
-rw-r--r--lisp/image-file.el10
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 @@
38 38
39;;;###autoload 39;;;###autoload
40(defcustom image-file-name-extensions 40(defcustom image-file-name-extensions
41 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm") 41 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")
42 "*A list of image-file filename extensions. 42 "*A list of image-file filename extensions.
43Filenames having one of these extensions are considered image files, 43Filenames having one of these extensions are considered image files,
44in addition to those matching `image-file-name-regexps'. 44in addition to those matching `image-file-name-regexps'.
45 45
46See `auto-image-file-mode'; if `auto-image-file-mode' is enabled, 46See `auto-image-file-mode'; if `auto-image-file-mode' is enabled,
47setting this variable directly does not take effect unless 47setting this variable directly does not take effect unless
48`auto-image-file-mode' is re-enabled; this happens automatically the 48`auto-image-file-mode' is re-enabled; this happens automatically when
49variable is set using \\[customize]." 49the variable is set using \\[customize]."
50 :type '(repeat string) 50 :type '(repeat string)
51 :set (lambda (sym val) 51 :set (lambda (sym val)
52 (set-default sym val) 52 (set-default sym val)
@@ -64,8 +64,8 @@ in addition to those with an extension in `image-file-name-extensions'.
64 64
65See function `auto-image-file-mode'; if `auto-image-file-mode' is 65See function `auto-image-file-mode'; if `auto-image-file-mode' is
66enabled, setting this variable directly does not take effect unless 66enabled, setting this variable directly does not take effect unless
67`auto-image-file-mode' is re-enabled; this happens automatically the 67`auto-image-file-mode' is re-enabled; this happens automatically when
68variable is set using \\[customize]." 68the variable is set using \\[customize]."
69 :type '(repeat regexp) 69 :type '(repeat regexp)
70 :set (lambda (sym val) 70 :set (lambda (sym val)
71 (set-default sym val) 71 (set-default sym val)