]> git.eshelyaron.com Git - emacs.git/commitdiff
(image-type-header-regexps): Be more specific detecting `pbm' and `png' files.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 19 Dec 2006 16:42:54 +0000 (16:42 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 19 Dec 2006 16:42:54 +0000 (16:42 +0000)
Use non-capturing parenthesis for `tiff' regexp.

lisp/image.el

index b388396ded71bfaea202de01ce8f466ce41f5377..c50be757564ab745938b3eba2dfa06b381a6d3b4 100644 (file)
 
 (defconst image-type-header-regexps
   '(("\\`/[\t\n\r ]*\\*.*XPM.\\*/" . xpm)
-    ("\\`P[1-6]" . pbm)
+    ("\\`P[1-6][[:space:]]+\\(?:#.*[[:space:]]+\\)*[0-9]+[[:space:]]+[0-9]+" . pbm)
     ("\\`GIF8" . gif)
-    ("\\`\211PNG\r\n" . png)
+    ("\\`\x89PNG\r\n\x1a\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.