From: Dave Love Date: Fri, 6 Oct 2000 18:45:08 +0000 (+0000) Subject: file-coding-system-alist): Use \', X-Git-Tag: emacs-pretest-21.0.90~1091 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2238f751d509a09b2222d608d3cd6f4d85691311;p=emacs.git file-coding-system-alist): Use \', not $. --- diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index 2f1f7571b35..8b2c5da5bcd 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el @@ -397,9 +397,9 @@ ;; Tar files are not decoded at all, but we treat them as raw bytes. (setq file-coding-system-alist - '(("\\.elc$" . (emacs-mule . emacs-mule)) - ("\\(\\`\\|/\\)loaddefs.el$" . (no-conversion . no-conversion)) - ("\\.tar$" . (no-conversion . no-conversion)) + '(("\\.elc\\'" . (emacs-mule . emacs-mule)) + ("\\(\\`\\|/\\)loaddefs.el\\'" . (no-conversion . no-conversion)) + ("\\.tar\\'" . (no-conversion . no-conversion)) ("" . (undecided . nil))))