]> git.eshelyaron.com Git - emacs.git/commitdiff
(fortran-font-lock-keywords-2): Add keywords for
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 18 May 2008 04:17:11 +0000 (04:17 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 18 May 2008 04:17:11 +0000 (04:17 +0000)
logic operators .eqv. and .neqv.

lisp/ChangeLog
lisp/progmodes/fortran.el

index e4ea722702d6222f1ad43481c30b4090a001c532..927983e12cc327ab844f2779cefdc1daf1a2203f 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-18  mohrmarc  <debian@miller-mohr.de>  (tiny change)
+
+       * progmodes/fortran.el (fortran-font-lock-keywords-2): Add keywords for
+       logic operators .eqv. and .neqv.
+
 2008-05-17  David Hull <david@snap.com>  (tiny change)
 
        * vc-hg.el (vc-hg-annotate-command): Allow white space before
index d326207d73f2ed09973517a07f369399302c9893..0e7fd0ee051546f527ac7ef9127e6a654b462997 100644 (file)
@@ -360,7 +360,7 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
            ;; Builtin operators.
            (concat "\\." (regexp-opt
                           '("and" "or" "not" "lt" "le" "eq" "ge"
-                            "gt" "ne" "true" "false")
+                            "gt" "ne" "eqv" "neqv" "true" "false")
                           'paren) "\\.")
            ;; do/goto keywords and targets, and goto tags.
            '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?"