aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-10-06 16:20:03 +0000
committerDave Love2000-10-06 16:20:03 +0000
commitdb623cef4e2c63068195ab1d78a78baff3ba7aa3 (patch)
treea9d2ee8a5f151f055bf4c50d7c63f074031e8c82
parenta23ccdf282ca784fd817b7d17a85c57ac3792bef (diff)
downloademacs-db623cef4e2c63068195ab1d78a78baff3ba7aa3.tar.gz
emacs-db623cef4e2c63068195ab1d78a78baff3ba7aa3.zip
(image-file-name-extensions): Add pbm.
-rw-r--r--lisp/image-file.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/image-file.el b/lisp/image-file.el
index 979120a1929..d80ce39c4ae 100644
--- a/lisp/image-file.el
+++ b/lisp/image-file.el
@@ -25,7 +25,7 @@
25;;; Commentary: 25;;; Commentary:
26 26
27;; Defines a file-name-handler hook that transforms visited (or 27;; Defines a file-name-handler hook that transforms visited (or
28;; inserted) image files so that they are by displayed as emacs as 28;; inserted) image files so that they are displayed by emacs as
29;; images. This is done by putting a `display' text-property on the 29;; images. This is done by putting a `display' text-property on the
30;; image data, with the image-data still present underneath; if the 30;; image data, with the image-data still present underneath; if the
31;; resulting buffer file is saved to another name it will correctly save 31;; resulting buffer file is saved to another name it will correctly save
@@ -37,7 +37,7 @@
37 37
38 38
39(defcustom image-file-name-extensions 39(defcustom image-file-name-extensions
40 '("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm") 40 '("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm")
41 "*A list of image-file filename extensions. 41 "*A list of image-file filename extensions.
42Filenames having one of these extensions are considered image files, 42Filenames having one of these extensions are considered image files,
43in addition to those matching `image-file-name-regexps'. 43in addition to those matching `image-file-name-regexps'.
@@ -60,8 +60,8 @@ variable is set using \\[customize]."
60Filenames matching one of these regexps are considered image files, 60Filenames matching one of these regexps are considered image files,
61in addition to those with an extension in `image-file-name-extensions'. 61in addition to those with an extension in `image-file-name-extensions'.
62 62
63See `auto-image-file-mode'; if `auto-image-file-mode' is enabled, 63See function `auto-image-file-mode'; if `auto-image-file-mode' is
64setting this variable directly does not take effect unless 64enabled, setting this variable directly does not take effect unless
65`auto-image-file-mode' is re-enabled; this happens automatically the 65`auto-image-file-mode' is re-enabled; this happens automatically the
66variable is set using \\[customize]." 66variable is set using \\[customize]."
67 :type '(repeat regexp) 67 :type '(repeat regexp)