Function: nxml-show-all

nxml-show-all is an interactive and byte-compiled function defined in nxml-outln.el.gz.

Signature

(nxml-show-all)

Documentation

Show all elements in the buffer normally.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-outln.el.gz
;;; Commands for changing visibility

(defun nxml-show-all ()
  "Show all elements in the buffer normally."
  (interactive)
  (with-silent-modifications
    (remove-text-properties (point-min)
			    (point-max)
			    '(nxml-outline-state nil)))
  (nxml-outline-set-overlay nil (point-min) (point-max)))