diff options
| author | Miles Bader | 2000-12-18 02:18:21 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-12-18 02:18:21 +0000 |
| commit | 7f49aa0734b05f7694d7264ae8f1106c81deec93 (patch) | |
| tree | 2779e931d50fb43768a8f77d5c92dc63cf619839 | |
| parent | 5a04700221cb704ec8ebdce2ddf76c1f14ec3faa (diff) | |
| download | emacs-7f49aa0734b05f7694d7264ae8f1106c81deec93.tar.gz emacs-7f49aa0734b05f7694d7264ae8f1106c81deec93.zip | |
(image-file-name-extensions): Add "pgm" and "ppm".
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/image-file.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b537260d74f..114ff5e0b16 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2000-12-18 Miles Bader <miles@gnu.org> | 1 | 2000-12-18 Miles Bader <miles@gnu.org> |
| 2 | 2 | ||
| 3 | * image-file.el (image-file-name-extensions): Add "pgm" and "ppm". | ||
| 4 | |||
| 3 | * textmodes/artist.el (artist-replace-chars, artist-replace-char): | 5 | * textmodes/artist.el (artist-replace-chars, artist-replace-char): |
| 4 | Check that emacs-major-version is `=' to 20, not `>='. | 6 | Check that emacs-major-version is `=' to 20, not `>='. |
| 5 | (artist-replace-chars): Use `make-string' instead of a loop. | 7 | (artist-replace-chars): Use `make-string' instead of a loop. |
diff --git a/lisp/image-file.el b/lisp/image-file.el index ef667085eac..87314f3b90c 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") | 41 | '("png" "jpeg" "jpg" "gif" "tiff" "xbm" "xpm" "pbm" "pgm" "ppm") |
| 42 | "*A list of image-file filename extensions. | 42 | "*A list of image-file filename extensions. |
| 43 | Filenames having one of these extensions are considered image files, | 43 | Filenames having one of these extensions are considered image files, |
| 44 | in addition to those matching `image-file-name-regexps'. | 44 | in addition to those matching `image-file-name-regexps'. |