From: Richard M. Stallman Date: Sun, 6 Feb 1994 19:33:18 +0000 (+0000) Subject: (auto-mode-alist): Add elt for .tcl files. X-Git-Tag: emacs-19.34~10047 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7ca1d90327c5374ad747816284ef0e4e3b4d5dfb;p=emacs.git (auto-mode-alist): Add elt for .tcl files. Move texinfo elts up. --- diff --git a/lisp/files.el b/lisp/files.el index f5aad139dd1..d441cafcb56 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -789,6 +789,8 @@ run `normal-mode' explicitly." ;;; ("[Mm]akefile" . makefile-mode) ;;; Less common extensions come here ;;; so more common ones above are found faster. + ("\\.texinfo\\'" . texinfo-mode) + ("\\.texi\\'" . texinfo-mode) ("\\.s\\'" . asm-mode) ("ChangeLog\\'" . change-log-mode) ("change.log\\'" . change-log-mode) @@ -804,8 +806,7 @@ run `normal-mode' explicitly." ("\\.bib\\'" . bibtex-mode) ("\\.article\\'" . text-mode) ("\\.letter\\'" . text-mode) - ("\\.texinfo\\'" . texinfo-mode) - ("\\.texi\\'" . texinfo-mode) + ("\\.tcl\\'" . tcl-mode) ("\\.lsp\\'" . lisp-mode) ("\\.awk\\'" . awk-mode) ("\\.prolog\\'" . prolog-mode)