Function: TeX-find-macro-start

TeX-find-macro-start is a byte-compiled function defined in tex.el.

Signature

(TeX-find-macro-start &optional LIMIT)

Documentation

Return the start of a macro.

If LIMIT is given, do not search backward further than this point in buffer. Arguments enclosed in brackets or braces are considered part of the macro.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-find-macro-start (&optional limit)
  "Return the start of a macro.
If LIMIT is given, do not search backward further than this point
in buffer.  Arguments enclosed in brackets or braces are
considered part of the macro."
  (car (TeX-find-macro-boundaries limit)))