Variable: fortran-continuation-string

fortran-continuation-string is a customizable variable defined in fortran.el.gz.

Value

"$"

Documentation

Single-character string used for Fortran continuation lines.

In fixed format continuation style, this character is inserted in column 6 by M-x fortran-split-line (fortran-split-line) to begin a continuation line. Also, if M-x fortran-indent-line (fortran-indent-line) finds this at the beginning of a line, it will convert the line into a continuation line of the appropriate style. Normally "$".

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defcustom fortran-continuation-string "$"
  "Single-character string used for Fortran continuation lines.
In fixed format continuation style, this character is inserted in
column 6 by \\[fortran-split-line] to begin a continuation line.
Also, if \\[fortran-indent-line] finds this at the beginning of a
line, it will convert the line into a continuation line of the
appropriate style.  Normally \"$\"."
  :type  'string
  :safe  (lambda (value) (and (stringp value) (= (length value) 1)))
  :group 'fortran)