diff options
author | Dave Love <fx@gnu.org> | 2000-10-06 18:45:08 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-10-06 18:45:08 +0000 |
commit | 2238f751d509a09b2222d608d3cd6f4d85691311 (patch) | |
tree | b33c42feb5c60e894be91c85a1380be7fb40452f /lisp/international | |
parent | e75667a0bd5b42924632b0eb0ad60596a396a08e (diff) | |
download | emacs-2238f751d509a09b2222d608d3cd6f4d85691311.tar.gz |
file-coding-system-alist): Use \',
not $.
Diffstat (limited to 'lisp/international')
-rw-r--r-- | lisp/international/mule-conf.el | 6 |
1 files changed, 3 insertions, 3 deletions
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)))) |