diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2020-10-22 18:31:31 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2020-10-22 18:31:31 +0200 |
commit | 30dba74e77baa31af32bc7044146d69965220ad7 (patch) | |
tree | b47e5a6306178c7007e7e8f54d2a377e3663e3f9 | |
parent | a090e5fe0855587fd122151794757dbf04dc7c73 (diff) | |
download | emacs-30dba74e77baa31af32bc7044146d69965220ad7.tar.gz emacs-30dba74e77baa31af32bc7044146d69965220ad7.tar.bz2 emacs-30dba74e77baa31af32bc7044146d69965220ad7.zip |
; * lisp/progmodes/fortran.el: Call 'eval' with lexical binding.
-rw-r--r-- | lisp/progmodes/fortran.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index 206d1f2a05d..d84c3795653 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el @@ -502,7 +502,8 @@ This is used to fontify fixed-format Fortran comments." ;; line-length will indeed be ignored (and will result in a string that ;; leaks into subsequent lines). (,(format "^[^CcDd\\*\t\n].\\{%d\\}\\(.+\\)" (1- line-length)) - (1 "<"))))) + (1 "<"))) + t)) (defvar fortran-font-lock-keywords fortran-font-lock-keywords-1 "Default expressions to highlight in Fortran mode.") |