Function: idlwave-in-comment

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

Signature

(idlwave-in-comment)

Documentation

Return t if point is inside a comment, nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defun idlwave-in-comment ()
  "Return t if point is inside a comment, nil otherwise."
  (save-excursion
    (let ((here (point)))
      (and (idlwave-goto-comment) (> here (point))))))