Function: LaTeX--env-parse-args

LaTeX--env-parse-args is a byte-compiled function defined in latex.el.

Signature

(LaTeX--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/latex.el
(defun LaTeX--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))))
    (LaTeX-find-matching-begin)
    (end-of-line)
    (TeX-parse-arguments args)
    (goto-char TeX-exit-mark)
    (set-marker TeX-exit-mark nil)))