Function: LaTeX-env-beginning-pos-col
LaTeX-env-beginning-pos-col is a byte-compiled function defined in
latex.el.
Signature
(LaTeX-env-beginning-pos-col)
Documentation
Return a cons: (POINT . COLUMN) for current environment's beginning.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
;; This function is no longer used; We leave it for compatibility.
(defun LaTeX-env-beginning-pos-col ()
"Return a cons: (POINT . COLUMN) for current environment's beginning."
(save-excursion
(LaTeX-find-matching-begin)
(cons (point) (current-column))))