From: Gerd Moellmann Date: Wed, 25 Jul 2001 09:48:04 +0000 (+0000) Subject: (auto-mode-alist): Use nroff-mode for files ending X-Git-Tag: emacs-pretest-21.0.105~400 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e043664a1d57724b3ce11f1ccc61574ec990b73a;p=emacs.git (auto-mode-alist): Use nroff-mode for files ending in `.9'. From Assar Westerlund . --- 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 + + * files.el (auto-mode-alist): Use nroff-mode for files ending + in `.9'. From Assar Westerlund . + 2001-07-24 Eli Zaretskii * 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' . 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).