aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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]+\\)?"