]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/progmodes/fortran.el: Call 'eval' with lexical binding.
authorMattias Engdegård <mattiase@acm.org>
Thu, 22 Oct 2020 16:31:31 +0000 (18:31 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 22 Oct 2020 16:31:31 +0000 (18:31 +0200)
lisp/progmodes/fortran.el

index 206d1f2a05d89c31925e4260304cb2b5a153a7f9..d84c3795653d8b72f8fca32dfd90f28e90d0f65b 100644 (file)
@@ -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.")