Function: f90-next-statement
f90-next-statement is an interactive and byte-compiled function
defined in f90.el.gz.
Signature
(f90-next-statement)
Documentation
Move point to beginning of the next F90 statement.
Return nil if no later statement is found.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-next-statement ()
"Move point to beginning of the next F90 statement.
Return nil if no later statement is found."
(interactive)
(let (not-last-statement)
(beginning-of-line)
(while (and (setq not-last-statement
(and (zerop (forward-line 1))
(not (eobp))))
(looking-at "[ \t0-9]*\\(!\\|$\\|#\\)")))
not-last-statement))