Variable: fortran-comment-indent-style

fortran-comment-indent-style is a customizable variable defined in fortran.el.gz.

Value

fixed

Documentation

How to indent comments.

nil forces comment lines not to be touched; fixed indents to fortran-comment-line-extra-indent columns beyond
  fortran-minimum-statement-indent-fixed (if indent-tabs-mode(var)/indent-tabs-mode(fun) nil), or
  fortran-minimum-statement-indent-tab (if indent-tabs-mode(var)/indent-tabs-mode(fun) non-nil);
relative indents to current Fortran indentation plus
  fortran-comment-line-extra-indent.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defcustom fortran-comment-indent-style 'fixed
  "How to indent comments.
nil forces comment lines not to be touched;
`fixed' indents to `fortran-comment-line-extra-indent' columns beyond
  `fortran-minimum-statement-indent-fixed' (if `indent-tabs-mode' nil), or
  `fortran-minimum-statement-indent-tab' (if `indent-tabs-mode' non-nil);
`relative' indents to current Fortran indentation plus
  `fortran-comment-line-extra-indent'."
  :type  '(radio (const :tag "Untouched" nil) (const fixed) (const relative))
  :safe  (lambda (value) (memq value '(nil fixed relative)))
  :group 'fortran-indent)