From: Mark Wooding Date: Thu, 3 Aug 2017 11:40:13 +0000 (+0100) Subject: el/dot-emacs.el: Squish Flymake patterns a bit. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/f11500173a38df467cbf4ffde47b4cfaa153ca88?ds=inline el/dot-emacs.el: Squish Flymake patterns a bit. This is actually part of an abortive attempt to flymake assembler code. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 04eb3c0..e48faa1 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -599,9 +599,9 @@ (defun mdw-flymake-make-init () #'flymake-get-make-cmdline))))) (setq flymake-allowed-file-name-masks - '(("\\.\\(?:c\\|C\\|cc\\|cpp\\|cxx\\|c\\+\\+\\)\\'" + '(("\\.\\(?:[cC]\\|cc\\|cpp\\|cxx\\|c\\+\\+\\)\\'" mdw-flymake-make-init) - ("\\.\\(?:h\\|H\\|hh\\|hpp\\|hxx\\|h\\+\\+\\)\\'" + ("\\.\\(?:[hH]\\|hh\\|hpp\\|hxx\\|h\\+\\+\\)\\'" mdw-flymake-master-make-init) ("\\.p[lm]" flymake-perl-init)))