Variable: f90-break-delimiters

f90-break-delimiters is a customizable variable defined in f90.el.gz.

Value

"[-+\\*/><=,%     ]"

Documentation

Regexp matching delimiter characters at which lines may be broken.

There are some common two-character tokens where one or more of the members matches this regexp. Although Fortran allows breaks within lexical tokens (provided the next line has a beginning ampersand), the constant f90-no-break-re ensures that such tokens are not split.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defcustom f90-break-delimiters "[-+\\*/><=,% \t]"
  "Regexp matching delimiter characters at which lines may be broken.
There are some common two-character tokens where one or more of
the members matches this regexp.  Although Fortran allows breaks
within lexical tokens (provided the next line has a beginning ampersand),
the constant `f90-no-break-re' ensures that such tokens are not split."
  :type 'regexp
  :safe 'stringp
  :group 'f90)