Function: ConTeXt-last-unended-start-xml

ConTeXt-last-unended-start-xml is a byte-compiled function defined in context.el.

Signature

(ConTeXt-last-unended-start-xml)

Documentation

Leave point at the beginning of the last tag that is unstopped.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
;; XML inside ConTeXt support

(defun ConTeXt-last-unended-start-xml ()
  "Leave point at the beginning of the last `tag' that is unstopped."
  (while (and (re-search-backward "<[_A-Za-z][-:._A-Za-z0-9]*\\([ \t\r\n]\\|[_A-Za-z][-:._A-Za-z0-9]*\=\"[^\"]*\"\\)*>\\|</[_A-Za-z][-:_A-Za-z0-9]*>")
              (looking-at "</[_A-Za-z][-:._A-Za-z0-9]*>"))
    (ConTeXt-last-unended-start-xml)))