]> git.eshelyaron.com Git - emacs.git/commitdiff
(magic-mode-alist): Detect image files with `image-type-auto-detected-p'
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 30 Dec 2006 01:53:11 +0000 (01:53 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 30 Dec 2006 01:53:11 +0000 (01:53 +0000)
instead of `image-type-from-buffer'.

lisp/files.el

index 71f33e5f1a113892bd7452498cdde4e7b7da56ed..78e25fe8c24ac234c9d59c92aae012135d807adf 100644 (file)
@@ -2115,7 +2115,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-from-buffer . image-mode)
+  `((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.