Function: nxml-show
nxml-show is an interactive and byte-compiled function defined in
nxml-outln.el.gz.
Signature
(nxml-show)
Documentation
Show the section containing point normally, without hiding anything.
This includes everything in the section at any level. The section
containing point is the innermost section that contains the character
following point. See the variable nxml-section-element-name-regexp
for more details on how to customize which elements are recognized as
sections and headings.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-outln.el.gz
(defun nxml-show ()
"Show the section containing point normally, without hiding anything.
This includes everything in the section at any level. The section
containing point is the innermost section that contains the character
following point. See the variable `nxml-section-element-name-regexp'
for more details on how to customize which elements are recognized as
sections and headings."
(interactive)
(nxml-transform-subtree-outline '((hide-children . nil)
(t . nil))))