Function: fortran-fill-paragraph

fortran-fill-paragraph is an interactive and byte-compiled function defined in fortran.el.gz.

Signature

(fortran-fill-paragraph &optional JUSTIFY)

Documentation

Fill surrounding comment block as paragraphs, else fill statement.

Intended as the value of fill-paragraph-function. A comment block is filled by calling fill-comment-paragraph with argument JUSTIFY, otherwise fortran-fill-statement is called. Always returns non-nil (to prevent fill-paragraph being called).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defun fortran-fill-paragraph (&optional justify)
  "Fill surrounding comment block as paragraphs, else fill statement.
Intended as the value of `fill-paragraph-function'.
A comment block is filled by calling `fill-comment-paragraph' with
argument JUSTIFY, otherwise `fortran-fill-statement' is called.
Always returns non-nil (to prevent `fill-paragraph' being called)."
  (interactive "*P")
  (or (fill-comment-paragraph justify)
      (fortran-fill-statement)
      t))