aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1995-08-10 14:04:25 +0000
committerSimon Marshall1995-08-10 14:04:25 +0000
commitd232ea9da09685f1a0d824779c9628769af1339d (patch)
treee775169fb0cd8d745fd6391fdd47b36f66f34c6e
parentd46c21ecaed995a48f9d8d72fa615826ad6cba6b (diff)
downloademacs-d232ea9da09685f1a0d824779c9628769af1339d.tar.gz
emacs-d232ea9da09685f1a0d824779c9628769af1339d.zip
Tweak fortran-font-lock-keywords-1.
-rw-r--r--lisp/progmodes/fortran.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 8f7d645a3bf..97940b00ea7 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -195,7 +195,7 @@ This variable used in TAB format mode.")
195 ;; Fontify comments and strings. We assume that strings cannot be quoted. 195 ;; Fontify comments and strings. We assume that strings cannot be quoted.
196 (cons (concat "^[" comment-chars "].*") 'font-lock-comment-face) 196 (cons (concat "^[" comment-chars "].*") 'font-lock-comment-face)
197 '(fortran-match-!-comment . font-lock-comment-face) 197 '(fortran-match-!-comment . font-lock-comment-face)
198 (list (concat "^[^" comment-chars "\t]" (make-string 71 ?.) "\\(.*\\)") 198 (list (concat "^[^" comment-chars "\t\n]" (make-string 71 ?.) "\\(.*\\)")
199 '(1 font-lock-comment-face)) 199 '(1 font-lock-comment-face))
200 '("'[^'\n]*'?" . font-lock-string-face) 200 '("'[^'\n]*'?" . font-lock-string-face)
201 ;; 201 ;;