Function: ConTeXt--env-parse-args
ConTeXt--env-parse-args is a byte-compiled function defined in
context.el.
Signature
(ConTeXt--env-parse-args ARGS)
Documentation
Helper function to insert arguments defined by ARGS.
This function checks if TeX-exit-mark is set, otherwise it's
set to the point where this function starts. Point will be at
TeX-exit-mark when this function exits.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
(defun ConTeXt--env-parse-args (args)
"Helper function to insert arguments defined by ARGS.
This function checks if `TeX-exit-mark' is set, otherwise it's
set to the point where this function starts. Point will be at
`TeX-exit-mark' when this function exits."
(let ((TeX-exit-mark (or TeX-exit-mark
(point-marker))))
(ConTeXt-find-matching-start)
(end-of-line)
(TeX-parse-arguments args)
(goto-char TeX-exit-mark)
(set-marker TeX-exit-mark nil)))