Function: nxml-mark-paragraph

nxml-mark-paragraph is an interactive and byte-compiled function defined in nxml-mode.el.gz.

Signature

(nxml-mark-paragraph)

Documentation

Put point at beginning of this paragraph, mark at end.

The paragraph marked is the one that contains point or follows point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
;;; Paragraphs

(defun nxml-mark-paragraph ()
  "Put point at beginning of this paragraph, mark at end.
The paragraph marked is the one that contains point or follows point."
  (interactive)
  (nxml-forward-paragraph)
  (push-mark nil t t)
  (nxml-backward-paragraph))