Function: LaTeX-indent-inner-do
LaTeX-indent-inner-do is a byte-compiled function defined in latex.el.
Signature
(LaTeX-indent-inner-do INNER-INDENT)
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-indent-inner-do (inner-indent)
;; Small helper function for `LaTeX-indent-line' to perform
;; indentation after a comment character. It requires that
;; `LaTeX-indent-line' already set the appropriate variables and
;; should not be used outside of `LaTeX-indent-line'.
(move-to-left-margin)
(TeX-re-search-forward-unescaped
(concat "\\(" TeX-comment-start-regexp "+[ \t]*\\)+") (line-end-position) t)
(delete-region (line-beginning-position) (point))
(insert fill-prefix)
(indent-to (+ inner-indent (length fill-prefix))))