diff options
author | Simon Marshall <simon@gnu.org> | 1995-05-12 07:23:19 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1995-05-12 07:23:19 +0000 |
commit | e3889f84702933e39788445d5e72310930fa4542 (patch) | |
tree | fd4fa87ac7aa760bc99d89198248b4b5f00a8ae6 /lisp/progmodes/fortran.el | |
parent | cc6e72699cc2b727a4891ca3b06fbdf22afa46d2 (diff) | |
download | emacs-e3889f84702933e39788445d5e72310930fa4542.tar.gz emacs-e3889f84702933e39788445d5e72310930fa4542.tar.bz2 emacs-e3889f84702933e39788445d5e72310930fa4542.zip |
Added `entry' to `fortran-font-lock-keywords-1' highlight of declarations.
Diffstat (limited to 'lisp/progmodes/fortran.el')
-rw-r--r-- | lisp/progmodes/fortran.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index aa4d82dbab7..f65332766dc 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el @@ -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'. |