Mercurial > emacs
diff lisp/progmodes/fortran.el @ 20953:f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Fri, 20 Feb 1998 14:58:27 +0000 |
parents | 918448e5d294 |
children | 65ac561ad75c |
line wrap: on
line diff
--- a/lisp/progmodes/fortran.el Fri Feb 20 14:55:48 1998 +0000 +++ b/lisp/progmodes/fortran.el Fri Feb 20 14:58:27 1998 +0000 @@ -326,8 +326,8 @@ ;; Fontify do/goto keywords and targets, and goto tags. (list "\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?" '(1 font-lock-keyword-face) - '(2 font-lock-reference-face nil t)) - (cons "^ *\\([0-9]+\\)" 'font-lock-reference-face)))) + '(2 font-lock-constant-face nil t)) + (cons "^ *\\([0-9]+\\)" 'font-lock-constant-face)))) (setq fortran-font-lock-keywords-3 (append @@ -354,7 +354,7 @@ ;; ;; Fontify goto-like `err=label'/`end=label' in read/write statements. '(", *\\(e\\(nd\\|rr\\)\\)\\> *\\(= *\\([0-9]+\\)\\)?" - (1 font-lock-keyword-face) (4 font-lock-reference-face nil t)) + (1 font-lock-keyword-face) (4 font-lock-constant-face nil t)) ;; ;; Highlight standard continuation character and in a TAB-formatted line. '("^ \\([^ 0]\\)" 1 font-lock-string-face)