Function: nxml-debug-region

nxml-debug-region is an interactive and byte-compiled function defined in nxml-mode.el.gz.

Signature

(nxml-debug-region START END)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-debug-region (start end)
  (interactive "r")
  (let ((font-lock-beg start)
        (font-lock-end end))
    (nxml-extend-region)
    (goto-char font-lock-beg)
    (set-mark font-lock-end)))