Function: f90-looking-at-associate

f90-looking-at-associate is a byte-compiled function defined in f90.el.gz.

Signature

(f90-looking-at-associate)

Documentation

Return ("associate") if an associate block starts after point.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
;; FIXME label?
(defsubst f90-looking-at-associate ()
  "Return (\"associate\") if an associate block starts after point."
  (if (looking-at "\\_<\\(associate\\)[ \t]*(")
      (list (match-string 1))))