Function: TeX-comment-indent
TeX-comment-indent is a byte-compiled function defined in tex.el.
Signature
(TeX-comment-indent)
Documentation
Determine the indentation of a comment.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-comment-indent ()
"Determine the indentation of a comment."
(if (looking-at "%%%")
(current-column)
(skip-chars-backward " \t")
(max (if (bolp) 0 (1+ (current-column)))
comment-column)))