diff options
| author | Gerd Moellmann <gerd@gnu.org> | 2001-07-25 09:48:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann <gerd@gnu.org> | 2001-07-25 09:48:04 +0000 |
| commit | e043664a1d57724b3ce11f1ccc61574ec990b73a (patch) | |
| tree | f79488663d87784ebaada2d1ba3c2bc5cd15cee2 | |
| parent | 296808a500931376ad44f071d801564ed1372d47 (diff) | |
| download | emacs-e043664a1d57724b3ce11f1ccc61574ec990b73a.tar.gz | |
(auto-mode-alist): Use nroff-mode for files ending
in `.9'. From Assar Westerlund <assar@stacken.kth.se>.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/files.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b6c7f227671..e4d1252c44e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-07-25 Gerd Moellmann <gerd@gnu.org> + + * files.el (auto-mode-alist): Use nroff-mode for files ending + in `.9'. From Assar Westerlund <assar@stacken.kth.se>. + 2001-07-24 Eli Zaretskii <eliz@is.elta.co.il> * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a diff --git a/lisp/files.el b/lisp/files.el index 977da75e4a9..9964f708100 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1468,7 +1468,7 @@ in that case, this function acts as if `enable-local-variables' were t." ;; The following should come after the ChangeLog pattern ;; for the sake of ChangeLog.1, etc. ;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too. - ("\\.[12345678]\\'" . nroff-mode) + ("\\.[1-9]\\'" . nroff-mode) ("\\.g\\'" . antlr-mode))) "Alist of filename patterns vs corresponding major mode functions. Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL). |
