Function: tpu-fill
tpu-fill is an interactive and byte-compiled function defined in
tpu-edt.el.gz.
Signature
(tpu-fill NUM)
Documentation
Fill paragraph or marked region.
With argument, fill and justify.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-fill (num)
"Fill paragraph or marked region.
With argument, fill and justify."
(interactive "P")
(cond ((tpu-mark)
(fill-region (point) (tpu-mark) num)
(tpu-unselect t))
(t
(fill-paragraph num))))