aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/fortran.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e4ea722702d..927983e12cc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-05-18 mohrmarc <debian@miller-mohr.de> (tiny change)
2
3 * progmodes/fortran.el (fortran-font-lock-keywords-2): Add keywords for
4 logic operators .eqv. and .neqv.
5
12008-05-17 David Hull <david@snap.com> (tiny change) 62008-05-17 David Hull <david@snap.com> (tiny change)
2 7
3 * vc-hg.el (vc-hg-annotate-command): Allow white space before 8 * vc-hg.el (vc-hg-annotate-command): Allow white space before
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index d326207d73f..0e7fd0ee051 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -360,7 +360,7 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
360 ;; Builtin operators. 360 ;; Builtin operators.
361 (concat "\\." (regexp-opt 361 (concat "\\." (regexp-opt
362 '("and" "or" "not" "lt" "le" "eq" "ge" 362 '("and" "or" "not" "lt" "le" "eq" "ge"
363 "gt" "ne" "true" "false") 363 "gt" "ne" "eqv" "neqv" "true" "false")
364 'paren) "\\.") 364 'paren) "\\.")
365 ;; do/goto keywords and targets, and goto tags. 365 ;; do/goto keywords and targets, and goto tags.
366 '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?" 366 '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?"