]> git.eshelyaron.com Git - emacs.git/commitdiff
(magic-mode-alist): Use image-mode-maybe rather than
authorJason Rumney <jasonr@gnu.org>
Wed, 31 Jan 2007 12:37:29 +0000 (12:37 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 31 Jan 2007 12:37:29 +0000 (12:37 +0000)
image-mode.

lisp/files.el

index 36f9e0353fb09071dac7c5920d0de7ce497282d0..139585368ff8501a3723cc61bd6ba15c0c540224 100644 (file)
@@ -2127,7 +2127,7 @@ of the regular expression.  The mode is then determined as the mode
 associated with that interpreter in `interpreter-mode-alist'.")
 
 (defvar magic-mode-alist
-  `((image-type-auto-detected-p . image-mode)
+  `((image-type-auto-detected-p . image-mode-maybe)
     ;; 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.