From: Dave Love Date: Mon, 24 Jun 2002 18:24:28 +0000 (+0000) Subject: (auto-coding-regexp-alist): Recognize X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~636 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e4a5bca3930c59c29c2385e2411ad68741b6a20;p=emacs.git (auto-coding-regexp-alist): Recognize Emacs 20/1 byte-compiled files. --- diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 391fb87eedb..52a485f90d1 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -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" . 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.