aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'.