Function: idlwave-is-comment-line
idlwave-is-comment-line is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-is-comment-line)
Documentation
Test if the current line is a comment line.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-is-comment-line ()
"Test if the current line is a comment line."
(save-excursion
(beginning-of-line 1)
(looking-at "[ \t]*;")))