Function: tpu-paragraph
tpu-paragraph is an interactive and byte-compiled function defined in
tpu-extras.el.gz.
Signature
(tpu-paragraph NUM)
Documentation
Move to the next paragraph in the current direction.
A repeat count means move that many paragraphs.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
(defun tpu-paragraph (num)
"Move to the next paragraph in the current direction.
A repeat count means move that many paragraphs."
(interactive "p")
(tpu-with-position
(if tpu-advance
(progn
(tpu-next-paragraph num)
(if (> (point) far)
(if (zerop (setq left (save-excursion (forward-line height))))
(recenter top-margin)
(recenter (- left bottom-up-margin)))
(and (> (point) bottom) (recenter bottom-margin))))
(tpu-previous-paragraph num)
(and (< (point) top) (recenter (min beg top-margin))))))