aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorGlenn Morris2008-05-17 20:08:54 +0000
committerGlenn Morris2008-05-17 20:08:54 +0000
commitac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e (patch)
tree07099f4b54882f66163a12bad246f3a0c23aa3cd /lisp/progmodes
parent07cfc4e77dd33ecc63f3626a4892d1817002a83a (diff)
downloademacs-ac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e.tar.gz
emacs-ac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e.zip
(fortran-font-lock-keywords-2): Add .eqv., .neqv.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/fortran.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index 467237ae1a6..846828dc971 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -389,8 +389,8 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
389 'paren) "\\>") 389 'paren) "\\>")
390 ;; Builtin operators. 390 ;; Builtin operators.
391 (concat "\\." (regexp-opt 391 (concat "\\." (regexp-opt
392 '("and" "or" "not" "lt" "le" "eq" "ge" 392 '("and" "eq" "eqv" "false" "ge" "gt" "le" "lt" "ne"
393 "gt" "ne" "true" "false") 393 "neqv" "not" "or" "true")
394 'paren) "\\.") 394 'paren) "\\.")
395 ;; do/goto keywords and targets, and goto tags. 395 ;; do/goto keywords and targets, and goto tags.
396 '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?" 396 '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?"