From: João Távora Date: Sat, 18 Apr 2020 21:57:03 +0000 (+0100) Subject: * lisp/files.el (auto-mode-alist): Add more reasonably lisp-data files X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da59c5e579f08297a873d453ae42b168cce021b2;p=emacs.git * lisp/files.el (auto-mode-alist): Add more reasonably lisp-data files --- diff --git a/lisp/files.el b/lisp/files.el index f2f3eee965e..56d4679ad7d 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2657,9 +2657,13 @@ since only a single case-insensitive search through the alist is made." ("\\.ltx\\'" . latex-mode) ("\\.dtx\\'" . doctex-mode) ("\\.org\\'" . org-mode) - ;; .dir-locals.el is not really elisp. Can't use the - ;; `dir-locals-file' constant since that is defined below. - (".dir-locals\\(-2\\)?.el" . lisp-data-mode) + ;; .dir-locals.el is not really elisp. Could use the + ;; `dir-locals-file' constant if it weren't defined below. + ("\\.dir-locals\\(-2\\)?\\.el\\'" . lisp-data-mode) + ("eww-bookmarks\\'" . lisp-data-mode) + ("tramp\\'" . lisp-data-mode) + ("places\\'" . lisp-data-mode) + ("\\.emacs-places\\'" . lisp-data-mode) ("\\.el\\'" . emacs-lisp-mode) ("Project\\.ede\\'" . emacs-lisp-mode) ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode)