Function: tpu-next-paragraph
tpu-next-paragraph is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-next-paragraph NUM)
Documentation
Move to beginning of the next paragraph.
Accepts a prefix argument for the number of paragraphs.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-next-paragraph (num)
"Move to beginning of the next paragraph.
Accepts a prefix argument for the number of paragraphs."
(interactive "p")
(beginning-of-line)
(while (and (not (eobp)) (> num 0))
(if (re-search-forward "^[ \t]*$" nil t)
(if (re-search-forward "[^ \t\n]" nil t)
(goto-char (match-beginning 0))
(goto-char (point-max))))
(setq num (1- num)))
(beginning-of-line))