Function: ConTeXt-last-unended-start
ConTeXt-last-unended-start is a byte-compiled function defined in
context.el.
Signature
(ConTeXt-last-unended-start)
Documentation
Leave point at the beginning of the last unstopped \start....
Look back from the current cursor.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
(defun ConTeXt-last-unended-start ()
"Leave point at the beginning of the last unstopped `\\start...'.
Look back from the current cursor."
(while (and (re-search-backward "\\\\start[a-zA-Z]*\\|\\\\stop[a-zA-Z]*")
(looking-at "\\\\stop[a-zA-Z]*"))
(ConTeXt-last-unended-start)))