Function: edt-paragraph-backward

edt-paragraph-backward is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-paragraph-backward NUM)

Documentation

Move backward to beginning of paragraph.

Argument NUM is the positive number of paragraphs to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-paragraph-backward (num)
  "Move backward to beginning of paragraph.
Argument NUM is the positive number of paragraphs to move."
  (interactive "p")
  (edt-check-prefix num)
  (edt-with-position
   (while (> num 0)
     (start-of-paragraph-text)
     (setq num (1- num)))
   (and (< (point) top) (recenter (min beg top-margin)))))