Function: nxml-refresh-outline
nxml-refresh-outline is an interactive and byte-compiled function
defined in nxml-outln.el.gz.
Signature
(nxml-refresh-outline)
Documentation
Refresh the outline to correspond to the current XML element structure.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-outln.el.gz
(defun nxml-refresh-outline ()
"Refresh the outline to correspond to the current XML element structure."
(interactive)
(save-excursion
(goto-char (point-min))
(kill-local-variable 'line-move-ignore-invisible)
(make-local-variable 'line-move-ignore-invisible)
(condition-case err
(nxml-outline-display-rest nil nil nil)
(nxml-outline-error
(nxml-report-outline-error "Cannot display outline: %s" err)))))