]> git.eshelyaron.com Git - emacs.git/commitdiff
(f90-font-lock-keywords-1): Revert change merged in from EMACS_22 branch.
authorGlenn Morris <rgm@gnu.org>
Sat, 27 Oct 2007 19:12:27 +0000 (19:12 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 27 Oct 2007 19:12:27 +0000 (19:12 +0000)
The trunk version does this differently.

lisp/progmodes/f90.el

index 49cfa504b8948d50f264e3aecc276505c038082c..29ffbcfe6b10fe639e6bd4549e65f87d3b65be68 100644 (file)
@@ -540,7 +540,7 @@ and variable-name parts, respectively."
     ;; TODO ? actually check for balanced parens in that case.
     '("^[ \t0-9]*\\(?:pure\\|elemental\\)?[ \t]*\
 \\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\
-enumerator\\|generic\\|procedure\\|logical\\|double[ \t]*precision\\|type[ \t]*(\\sw+)\\)\
+enumerator\\|generic\\|procedure\\|logical\\|double[ \t]*precision\\)\
 \\(.*::\\|[ \t]*(.*)\\)?\\([^&!\n]*\\)"
       (1 font-lock-type-face t) (4 font-lock-variable-name-face t))
     ;; Derived type/class variables.
@@ -1508,7 +1508,7 @@ Return (TYPE NAME), or nil if not found."
 Return (TYPE NAME), or nil if not found."
   (interactive)
   (let ((case-fold-search t)
-        (count 1)
+        (count 1) 
         matching-end)
     (end-of-line)
     (while (and (> count 0)