Function: nxml-section-start-position

nxml-section-start-position is a byte-compiled function defined in nxml-outln.el.gz.

Signature

(nxml-section-start-position)

Documentation

Return the position of the start of the section containing point.

Signal an error on failure.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-outln.el.gz
(defun nxml-section-start-position ()
  "Return the position of the start of the section containing point.
Signal an error on failure."
  (condition-case err
      (save-excursion (if (nxml-back-to-section-start)
			  (point)
			(error "Not in section")))
    (nxml-outline-error
     (nxml-report-outline-error "Couldn't determine containing section: %s"
				err))))