]> git.eshelyaron.com Git - emacs.git/commitdiff
Added `entry' to `fortran-font-lock-keywords-1' highlight of declarations.
authorSimon Marshall <simon@gnu.org>
Fri, 12 May 1995 07:23:19 +0000 (07:23 +0000)
committerSimon Marshall <simon@gnu.org>
Fri, 12 May 1995 07:23:19 +0000 (07:23 +0000)
lisp/progmodes/fortran.el

index aa4d82dbab78900a76a8b419ec5bf6b957dfbae3..f65332766dc78aab0d409ff31c215bcf58a8b2ab 100644 (file)
@@ -200,8 +200,8 @@ This variable used in TAB format mode.")
      '("'[^'\n]*'?" . font-lock-string-face)
      ;;
      ;; Program, subroutine and function declarations, plus calls.
-     (list (concat "\\<\\(block[ \t]*data\\|call\\|function\\|program\\|"
-                   "subroutine\\)\\>[ \t]*\\(\\sw+\\)?")
+     (list (concat "\\<\\(block[ \t]*data\\|call\\|entry\\|function\\|"
+                   "program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?")
            '(1 font-lock-keyword-face)
            '(2 font-lock-function-name-face nil t))))
   "For consideration as a value of `fortran-font-lock-keywords'.