aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-02-20 01:35:18 +0000
committerMiles Bader2001-02-20 01:35:18 +0000
commite8ebf97dee859d5a05b7ee815cd1e4f0f76c69fd (patch)
tree9d41981fd60088ab13511b67225585704fa2f63b
parent8a792d55ed9d78bcdb144917dfeaaff39e4f5b01 (diff)
downloademacs-e8ebf97dee859d5a05b7ee815cd1e4f0f76c69fd.tar.gz
emacs-e8ebf97dee859d5a05b7ee815cd1e4f0f76c69fd.zip
(image-file-name-extensions): Add "tif".
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/image-file.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1a537825820..418caac434f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12001-02-20 Miles Bader <miles@gnu.org>
2
3 * image-file.el (image-file-name-extensions): Add "tif".
4
12001-02-19 Gerd Moellmann <gerd@gnu.org> 52001-02-19 Gerd Moellmann <gerd@gnu.org>
2 6
3 * wid-edit.el (widget-button-click): Save the selected window 7 * wid-edit.el (widget-button-click): Save the selected window
diff --git a/lisp/image-file.el b/lisp/image-file.el
index 052cea8232b..7875314d335 100644
--- a/lisp/image-file.el
+++ b/lisp/image-file.el
@@ -38,7 +38,7 @@
38 38
39;;;###autoload 39;;;###autoload
40(defcustom image-file-name-extensions 40(defcustom image-file-name-extensions
41 '("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm" "pgm" "ppm") 41 '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm")
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'.