Function: LaTeX-env-item-args

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

Signature

(LaTeX-env-item-args ENVIRONMENT &rest ARGS)

Documentation

Insert ENVIRONMENT followed by ARGS and first item.

The first item is inserted by the function LaTeX--env-item.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-env-item-args (environment &rest args)
  "Insert ENVIRONMENT followed by ARGS and first item.
The first item is inserted by the function `LaTeX--env-item'."
  (LaTeX-insert-environment environment)
  (LaTeX--env-parse-args args)
  (LaTeX--env-item environment))