1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(auto-mode-alist): Use nroff-mode for files ending

in `.9'.  From Assar Westerlund  <assar@stacken.kth.se>.
This commit is contained in:
Gerd Moellmann 2001-07-25 09:48:04 +00:00
parent 296808a500
commit e043664a1d
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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).