1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(image-file-name-extensions): Add "pgm" and "ppm".

This commit is contained in:
Miles Bader 2000-12-18 02:18:21 +00:00
parent 5a04700221
commit 7f49aa0734
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2000-12-18 Miles Bader <miles@gnu.org>
* image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
* textmodes/artist.el (artist-replace-chars, artist-replace-char):
Check that emacs-major-version is `=' to 20, not `>='.
(artist-replace-chars): Use `make-string' instead of a loop.

View File

@ -38,7 +38,7 @@
;;;###autoload
(defcustom image-file-name-extensions
'("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm")
'("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm" "pgm" "ppm")
"*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'.