1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(image-type-header-regexps): Recognize xbm more strictly.

This commit is contained in:
Richard M. Stallman 2007-01-05 22:54:11 +00:00
parent 654ec2691d
commit 2dca7106aa
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2007-01-05 Richard Stallman <rms@gnu.org>
* image.el (image-type-header-regexps): Recognize xbm more strictly.
* simple.el (backward-kill-word): Doc fix.
2007-01-05 Romain Francoise <romain@orebokech.com>

View File

@ -38,7 +38,9 @@
("\\`P[1-6][[:space:]]+\\(?:#.*[[:space:]]+\\)*[0-9]+[[:space:]]+[0-9]+" . pbm)
("\\`GIF8" . gif)
("\\`\x89PNG\r\n\x1a\n" . png)
("\\`[\t\n\r ]*#define" . xbm)
("\\`[\t\n\r ]*#define \\([a-z0-9]+\\)_width [0-9]+\n\
#define \\1_height [0-9]+\n\
static char \\1_bits" . xbm)
("\\`\\(?:MM\0\\*\\|II\\*\0\\)" . tiff)
("\\`[\t\n\r ]*%!PS" . postscript)
("\\`\xff\xd8" . (image-jpeg-p . jpeg)))