]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-mode-alist): Use nroff-mode for files ending
authorGerd Moellmann <gerd@gnu.org>
Wed, 25 Jul 2001 09:48:04 +0000 (09:48 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 25 Jul 2001 09:48:04 +0000 (09:48 +0000)
in `.9'.  From Assar Westerlund  <assar@stacken.kth.se>.

lisp/ChangeLog
lisp/files.el

index b6c7f2276713acca5e832efb6547002be6707c52..e4d1252c44edfdb1d51aa980fc92ad2602330dda 100644 (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
index 977da75e4a9bd27caa9194c82fd69db7546d08e0..9964f708100e6c07f70e3e61c4480c18f30f7efa 100644 (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).