changeset 75743:83d10550e0c7

(magic-mode-alist): Call image-mode instead of image-mode-maybe for autodetected images.
author Chong Yidong <cyd@stupidchicken.com>
date Fri, 09 Feb 2007 16:50:00 +0000
parents 9e0d422392c4
children 53fa6ea37e3a
files lisp/files.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Fri Feb 09 16:49:29 2007 +0000
+++ b/lisp/files.el	Fri Feb 09 16:50:00 2007 +0000
@@ -2127,7 +2127,7 @@
 associated with that interpreter in `interpreter-mode-alist'.")
 
 (defvar magic-mode-alist
-  `((image-type-auto-detected-p . image-mode-maybe)
+  `((image-type-auto-detected-p . image-mode)
     ;; The < comes before the groups (but the first) to reduce backtracking.
     ;; TODO: UTF-16 <?xml may be preceded by a BOM 0xff 0xfe or 0xfe 0xff.
     ;; We use [ \t\n] instead of `\\s ' to make regex overflow less likely.