Function: fortran-indent-subprogram

fortran-indent-subprogram is an interactive and byte-compiled function defined in fortran.el.gz.

Signature

(fortran-indent-subprogram)

Documentation

Properly indent the Fortran subprogram containing point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defun fortran-indent-subprogram ()
  "Properly indent the Fortran subprogram containing point."
  (interactive "*")
  (save-excursion
    (mark-defun)
    (message "Indenting subprogram...")
    (indent-region (point) (mark) nil))
  (message "Indenting subprogram...done."))