Function: edt-paragraph

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

Signature

(edt-paragraph NUM)

Documentation

Move in current direction to next 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 (num)
  "Move in current direction to next paragraph.
Argument NUM is the positive number of paragraphs to move."
  (interactive "p")
  (if (equal edt-direction-string edt-forward-string)
      (edt-paragraph-forward num)
    (edt-paragraph-backward num)))