aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-05-17 20:08:54 +0000
committerGlenn Morris2008-05-17 20:08:54 +0000
commitac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e (patch)
tree07099f4b54882f66163a12bad246f3a0c23aa3cd
parent07cfc4e77dd33ecc63f3626a4892d1817002a83a (diff)
downloademacs-ac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e.tar.gz
emacs-ac342f28c0d4c7d6e9b73ae22853d60f1cd80e9e.zip
(fortran-font-lock-keywords-2): Add .eqv., .neqv.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/fortran.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3b87fa0e02b..e0c77499698 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-05-17 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/fortran.el (fortran-font-lock-keywords-2): Add .eqv., .neqv.
4
12008-05-17 Andreas Schwab <schwab@suse.de> 52008-05-17 Andreas Schwab <schwab@suse.de>
2 6
3 * vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding. 7 * vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding.
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]+\\)?"