# HG changeset patch # User Glenn Morris # Date 1192852353 0 # Node ID 6a30435bc190a69da71c2bc41b7cb5bacdae1471 # Parent 7bb8a742f9777c2c6c7637ea0a33ec2d942657b3 (f90-font-lock-keywords-2, f90-looking-at-type-like): Fix regexp typos. diff -r 7bb8a742f977 -r 6a30435bc190 lisp/progmodes/f90.el --- a/lisp/progmodes/f90.el Sat Oct 20 02:22:19 2007 +0000 +++ b/lisp/progmodes/f90.el Sat Oct 20 03:52:33 2007 +0000 @@ -371,7 +371,7 @@ (list ;; Variable declarations (avoid the real function call). '("^[ \t0-9]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\ -logical\\|double[ \t]*precision\\|*type[ \t]*(\\sw+)\\)\ +logical\\|double[ \t]*precision\\|type[ \t]*(\\sw+)\\)\ \\(.*::\\|[ \t]*(.*)\\)?\\([^&!\n]*\\)" (1 font-lock-type-face t) (4 font-lock-variable-name-face t)) ;; do, if, select, where, and forall constructs. @@ -963,7 +963,7 @@ (cond ((looking-at f90-type-def-re) (list (match-string 1) (match-string 2))) - ((looking-at "\\(interface\\|block[\t]*data\\)\\>") + ((looking-at "\\(interface\\|block[ \t]*data\\)\\>") (list (match-string 1) nil)))) (defsubst f90-looking-at-program-block-start ()