Function: nxml-forward-paragraph
nxml-forward-paragraph is an interactive and byte-compiled function
defined in nxml-mode.el.gz.
Signature
(nxml-forward-paragraph &optional ARG)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-forward-paragraph (&optional arg)
(interactive "^p")
(or arg (setq arg 1))
(cond ((< arg 0)
(nxml-backward-paragraph (- arg)))
((> arg 0)
(forward-line 0)
(while (and (nxml-forward-single-paragraph)
(> (setq arg (1- arg)) 0))))))