diff options
author | Juri Linkov <juri@jurta.org> | 2005-03-19 20:00:36 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-03-19 20:00:36 +0000 |
commit | 0ee6e7b7c2478b2967e448069f429618e1f779b2 (patch) | |
tree | 328406e8f35ab53e32d32a70f6c35ba3fbad17f7 /lisp/files.el | |
parent | e3668698dcf8a475c5ed2605cc286d42e275aa33 (diff) | |
download | emacs-0ee6e7b7c2478b2967e448069f429618e1f779b2.tar.gz |
(auto-mode-alist): Add comment. Optimize jar/ear/war.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el index 8099c7f1b40..1921c959bf9 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1775,8 +1775,10 @@ in that case, this function acts as if `enable-local-variables' were t." ("\\.pro\\'" . idlwave-mode) ("\\.prolog\\'" . prolog-mode) ("\\.tar\\'" . tar-mode) - ("\\.\\(arc\\|zip\\|lzh\\|zoo\\|ear\\|jar\\|war\\)\\'" . archive-mode) - ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|EAR\\|JAR\\|WAR\\)\\'" . archive-mode) + ;; The list of archive file extensions should be in sync with + ;; `auto-coding-alist' with `no-conversion' coding system. + ("\\.\\(arc\\|zip\\|lzh\\|zoo\\|[jew]ar\\)\\'" . archive-mode) + ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|[JEW]AR\\)\\'" . archive-mode) ("\\.sx[dmicw]\\'" . archive-mode) ; OpenOffice.org ;; Mailer puts message to be edited in ;; /tmp/Re.... or Message |