Variable: idlwave-begin-line-comment
idlwave-begin-line-comment is a customizable variable defined in
idlwave.el.gz.
Value
nil
Documentation
A comment anchored at the beginning of line.
A comment matching this regular expression will not have its indentation changed. If nil the default is "^;", i.e., any line beginning with a ";". Expressions for comments at the beginning of the line should begin with "^".
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defcustom idlwave-begin-line-comment nil
"A comment anchored at the beginning of line.
A comment matching this regular expression will not have its
indentation changed. If nil the default is \"^;\", i.e., any line
beginning with a \";\". Expressions for comments at the beginning of
the line should begin with \"^\"."
:group 'idlwave-code-formatting
:type '(choice (const :tag "Any line beginning with `;'" nil)
regexp))