Mercurial > emacs
changeset 45796:83291935212e
(auto-mode-alist): Move entry for ".in" to the end.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Thu, 13 Jun 2002 09:31:50 +0000 |
parents | b84460562b92 |
children | 96ce205f56fe |
files | lisp/files.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/files.el Thu Jun 13 09:28:48 2002 +0000 +++ b/lisp/files.el Thu Jun 13 09:31:50 2002 +0000 @@ -1460,8 +1460,7 @@ (mapc (lambda (elt) (cons (purecopy (car elt)) (cdr elt))) - '(("\\.in\\'" nil t) - ("\\.te?xt\\'" . text-mode) + '(("\\.te?xt\\'" . text-mode) ("\\.c\\'" . c-mode) ("\\.h\\'" . c-mode) ("\\.tex\\'" . tex-mode) @@ -1595,7 +1594,8 @@ ;; for the sake of ChangeLog.1, etc. ;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too. ("\\.[1-9]\\'" . nroff-mode) - ("\\.g\\'" . antlr-mode))) + ("\\.g\\'" . antlr-mode) + ("\\.in\\'" nil t))) "Alist of filename patterns vs corresponding major mode functions. Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL). \(NON-NIL stands for anything that is not nil; the value does not matter.)