Mercurial > emacs
changeset 11801:df31be5a8a11
Added `entry' to `fortran-font-lock-keywords-1' highlight of declarations.
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Fri, 12 May 1995 07:23:19 +0000 |
parents | a2f009e1b85b |
children | 4edc46a02892 |
files | lisp/progmodes/fortran.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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'.