refactor: use true eos regex in auto-mode-alist entries
"\\'" will match the true end-of-string, whereas "$" will also match just before a newline character. Not that there's much risk that there'll be newlines in a filepath, but I'd rather be consistent. It also makes these entries easier for users to remove from auto-mode-alist.
This commit is contained in:
parent
1fad466c12
commit
ebf91a1363
5 changed files with 5 additions and 5 deletions
|
@ -55,7 +55,7 @@
|
|||
;; The `.for' extension is automatically recognized by Emacs and invokes
|
||||
;; `fortran-mode', but not its capital variant `.FOR'. Many old files are
|
||||
;; named the latter way, so we account for that manually here.
|
||||
:mode ("\\.FOR$" . fortran-mode)
|
||||
:mode ("\\.FOR\\'" . fortran-mode)
|
||||
:config
|
||||
;; Or else Flycheck will get very mad.
|
||||
(setq flycheck-gfortran-language-standard "legacy")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue