diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-12-10 16:40:44 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-12-10 16:40:44 +0000 |
commit | 00daa381bc928c38f36a0ac98dc04749bafbe7ea (patch) | |
tree | 6d9ad91f59e09ebccb3bf539a1e344830f99be29 /lisp | |
parent | ae09da48cf0eea07fee58a72982c115248685f59 (diff) | |
download | emacs-00daa381bc928c38f36a0ac98dc04749bafbe7ea.tar.gz emacs-00daa381bc928c38f36a0ac98dc04749bafbe7ea.tar.bz2 emacs-00daa381bc928c38f36a0ac98dc04749bafbe7ea.zip |
(auto-mode-alist): Map .com to DCL mode.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/files.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 94daea9fe5c..8caec00e85e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-12-10 Thien-Thi Nguyen <ttn@gnu.org> + + * files.el (auto-mode-alist): Map .com to DCL mode. + 2004-12-09 Richard M. Stallman <rms@gnu.org> * isearch.el (isearch-mode-map): Treat S-SPC like SPC. diff --git a/lisp/files.el b/lisp/files.el index 1b269c0ddfa..e80e8fc766b 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1757,6 +1757,7 @@ in that case, this function acts as if `enable-local-variables' were t." ("\\.ses\\'" . ses-mode) ("\\.\\(soa\\|zone\\)\\'" . dns-mode) ("\\.docbook\\'" . sgml-mode) + ("\\.com\\'" . dcl-mode) ("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode) ;; Windows candidates may be opened case sensitively on Unix ("\\.\\(?:[iI][nN][iI]\\|[lL][sS][tT]\\|[rR][eE][gG]\\|[sS][yY][sS]\\)\\'" . conf-mode) |