]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-coding-regexp-alist): Recognize
authorDave Love <fx@gnu.org>
Mon, 24 Jun 2002 18:24:28 +0000 (18:24 +0000)
committerDave Love <fx@gnu.org>
Mon, 24 Jun 2002 18:24:28 +0000 (18:24 +0000)
Emacs 20/1 byte-compiled files.

lisp/international/mule.el

index 391fb87eedb90a86d5750e93ad326cb3b52e83db..52a485f90d12040853e566e3a9715df6a536a35d 100644 (file)
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
-;; Copyright (C) 2001 Free Software Foundation, Inc.
+;; Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 ;; Copyright (C) 2001, 2002
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
 ;;   Registration Number H13PRO009
@@ -1122,7 +1122,8 @@ and the contents of `file-coding-system-alist'."
                       (symbol :tag "Coding system"))))
 
 (defcustom auto-coding-regexp-alist
-  '(("^BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion))
+  '(("^BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion)
+    ("\\`;ELC\14\0\0\0" . emacs-mule))      ; Emacs 20-compiled
   "Alist of patterns vs corresponding coding systems.
 Each element looks like (REGEXP . CODING-SYSTEM).
 A file whose first bytes match REGEXP is decoded by CODING-SYSTEM on reading.