# HG changeset patch # User Simon Marshall # Date 800263399 0 # Node ID df31be5a8a119d5da1c0741bcb6e079f19bc607c # Parent a2f009e1b85bc45100c742414fd79b9898b55414 Added `entry' to `fortran-font-lock-keywords-1' highlight of declarations. diff -r a2f009e1b85b -r df31be5a8a11 lisp/progmodes/fortran.el --- a/lisp/progmodes/fortran.el Fri May 12 06:52:50 1995 +0000 +++ b/lisp/progmodes/fortran.el Fri May 12 07:23:19 1995 +0000 @@ -200,8 +200,8 @@ '("'[^'\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'.