Function: f90-previous-block

f90-previous-block is an interactive and byte-compiled function defined in f90.el.gz.

Signature

(f90-previous-block &optional NUM)

Documentation

Move point backward to the previous end or start of a code block.

With optional argument NUM, go backward that many blocks. If NUM is negative, go forwards. A block is a subroutine, if-endif, etc.

View in manual

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-previous-block (&optional num)
  "Move point backward to the previous end or start of a code block.
With optional argument NUM, go backward that many blocks.
If NUM is negative, go forwards.
A block is a subroutine, if-endif, etc."
  (interactive "p")
  (f90-next-block (- (or num 1))))