Variable: fortran-comment-line-start-skip

fortran-comment-line-start-skip is a customizable variable defined in fortran.el.gz.

Value

"^[CcDd*!]\\(\\([^      \n]\\)\\2+\\)?[         ]*"

Documentation

Regexp to match the start of a full-line comment.

This variable was added, or its default value changed, in Emacs 21.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
;; This used to match preprocessor lines too, but that messes up
;; filling and doesn't seem to be necessary.
(defcustom fortran-comment-line-start-skip
  "^[CcDd*!]\\(\\([^ \t\n]\\)\\2+\\)?[ \t]*"
  "Regexp to match the start of a full-line comment."
  :version "21.1"
  :type    'regexp
  :safe    'stringp
  :group   'fortran-comment)