1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

(image-type-regexps): Make sure that the TIFF

pattern is only matched at the beginning of a string.
From Markus Rost <rost@math.ohio-state.edu>.
This commit is contained in:
Gerd Moellmann 2001-08-21 08:12:16 +00:00
parent 37618c60af
commit 6ea3db8a10
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2001-08-21 Gerd Moellmann <gerd@gnu.org>
* image.el (image-type-regexps): Make sure that the TIFF
pattern is only matched at the beginning of a string.
From Markus Rost <rost@math.ohio-state.edu>.
* international/swedish.el: Pre-Mule file removed. From: Jonas
Oberg <jonas@gnu.org>.

View File

@ -36,7 +36,7 @@
("\\`GIF8" . gif)
("\\`\211PNG\r\n" . png)
("\\`[\t\n\r ]*#define" . xbm)
("\\`\\(MM\0\\*\\)\\|\\(II\\*\0\\)" . tiff)
("\\`\\(MM\0\\*\\|II\\*\0\\)" . tiff)
("\\`[\t\n\r ]*%!PS" . postscript)
("\\`\xff\xd8" . (image-jpeg-p . jpeg)))
"Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.