Function: TeX-comment-forward

TeX-comment-forward is a byte-compiled function defined in tex.el.

Signature

(TeX-comment-forward &optional N)

Documentation

Skip forward over N comments.

Just like forward-comment but only for positive N and can use regexps instead of syntax.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-comment-forward (&optional n)
  "Skip forward over N comments.
Just like `forward-comment' but only for positive N
and can use regexps instead of syntax."
  (comment-normalize-vars)
  (comment-forward n))