Function: nxml-balanced-close-start-tag-inline
nxml-balanced-close-start-tag-inline is an interactive and
byte-compiled function defined in nxml-mode.el.gz.
Signature
(nxml-balanced-close-start-tag-inline)
Documentation
Close the start-tag before point with > and insert a balancing end-tag.
Point is left between the start-tag and the end-tag. No extra whitespace is inserted.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-balanced-close-start-tag-inline ()
"Close the start-tag before point with `>' and insert a balancing end-tag.
Point is left between the start-tag and the end-tag.
No extra whitespace is inserted."
(interactive "*")
(nxml-balanced-close-start-tag 'inline))