Function: TeX-backward-comment-skip
TeX-backward-comment-skip is a byte-compiled function defined in
tex.el.
Signature
(TeX-backward-comment-skip &optional COUNT LIMIT)
Documentation
Move backward to the next comment skip.
This may be a switch between commented and not commented adjacent lines or between lines with different comment prefixes. With argument COUNT do it COUNT times. If argument LIMIT is given, do not move point to a position less than this value.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-backward-comment-skip (&optional count limit)
"Move backward to the next comment skip.
This may be a switch between commented and not commented adjacent
lines or between lines with different comment prefixes. With
argument COUNT do it COUNT times. If argument LIMIT is given, do
not move point to a position less than this value."
(unless count (setq count 1))
(when (= count 0) (setq count 1))
(unless limit (setq limit (point-min)))
(TeX-forward-comment-skip (- count) limit))