Function: tcl-in-comment

tcl-in-comment is a byte-compiled function defined in tcl.el.gz.

Signature

(tcl-in-comment)

Documentation

Return t if point is in a comment, and leave point at beginning of comment.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defun tcl-in-comment ()
  "Return t if point is in a comment, and leave point at beginning of comment."
  (let ((save (point)))
    (beginning-of-defun)
    (car (tcl-hairy-scan-for-comment nil save nil))))