1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-19 18:13:55 +00:00

* lisp/files.el (auto-mode-alist): Treat ".make" like ".mk".

This commit is contained in:
Glenn Morris 2012-05-08 13:23:09 -04:00
parent 49ed9c8e75
commit ad89bb83f7
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2012-05-08 Glenn Morris <rgm@gnu.org>
* files.el (auto-mode-alist): Treat ".make" like ".mk".
2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
* vc/log-edit.el: Add GNU coding standards highlighting.

View File

@ -2262,9 +2262,11 @@ since only a single case-insensitive search through the alist is made."
("\\.makepp\\'" . makefile-makepp-mode)
,@(if (memq system-type '(berkeley-unix darwin))
'(("\\.mk\\'" . makefile-bsdmake-mode)
("\\.make\\'" . makefile-bsdmake-mode)
("GNUmakefile\\'" . makefile-gmake-mode)
("[Mm]akefile\\'" . makefile-bsdmake-mode))
'(("\\.mk\\'" . makefile-gmake-mode) ; Might be any make, give Gnu the host advantage
("\\.make\\'" . makefile-gmake-mode)
("[Mm]akefile\\'" . makefile-gmake-mode)))
("\\.am\\'" . makefile-automake-mode)
;; Less common extensions come here