aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-10-20 03:53:59 +0000
committerGlenn Morris2007-10-20 03:53:59 +0000
commitf42fc119bc43ac1e902c530eaf3f88f49de8be6c (patch)
tree01e3d453dfb7c2817780a9cb090cd5af045370a3
parent5255e3ffc735b58bc314e2886b11e1b9ff489b22 (diff)
downloademacs-f42fc119bc43ac1e902c530eaf3f88f49de8be6c.tar.gz
emacs-f42fc119bc43ac1e902c530eaf3f88f49de8be6c.zip
(f90-font-lock-keywords-2, f90-looking-at-type-like): Fix regexp typos.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/f90.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a73aec73ae2..9d440b68c1e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-10-20 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/f90.el (f90-font-lock-keywords-2)
4 (f90-looking-at-type-like): Fix regexp typos.
5
12007-10-19 Juanma Barranquero <lekktu@gmail.com> 62007-10-19 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * bs.el (bs-mode): Add mode name (accidentally left out 8 * bs.el (bs-mode): Add mode name (accidentally left out
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index 6c704916c65..302917e2769 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -371,7 +371,7 @@ subroutine\\)\\|use\\|call\\)\\>[ \t]*\\(\\sw+\\)?"
371 (list 371 (list
372 ;; Variable declarations (avoid the real function call). 372 ;; Variable declarations (avoid the real function call).
373 '("^[ \t0-9]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\ 373 '("^[ \t0-9]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\
374logical\\|double[ \t]*precision\\|*type[ \t]*(\\sw+)\\)\ 374logical\\|double[ \t]*precision\\|type[ \t]*(\\sw+)\\)\
375\\(.*::\\|[ \t]*(.*)\\)?\\([^&!\n]*\\)" 375\\(.*::\\|[ \t]*(.*)\\)?\\([^&!\n]*\\)"
376 (1 font-lock-type-face t) (4 font-lock-variable-name-face t)) 376 (1 font-lock-type-face t) (4 font-lock-variable-name-face t))
377 ;; do, if, select, where, and forall constructs. 377 ;; do, if, select, where, and forall constructs.
@@ -963,7 +963,7 @@ NAME is non-nil only for type."
963 (cond 963 (cond
964 ((looking-at f90-type-def-re) 964 ((looking-at f90-type-def-re)
965 (list (match-string 1) (match-string 2))) 965 (list (match-string 1) (match-string 2)))
966 ((looking-at "\\(interface\\|block[\t]*data\\)\\>") 966 ((looking-at "\\(interface\\|block[ \t]*data\\)\\>")
967 (list (match-string 1) nil)))) 967 (list (match-string 1) nil))))
968 968
969(defsubst f90-looking-at-program-block-start () 969(defsubst f90-looking-at-program-block-start ()