Variable: fortran-no-break-re
fortran-no-break-re is a variable defined in fortran.el.gz.
Value
"\\(\\*\\*\\|/[/=]\\|<=\\|=[=>]\\|>=\\)"
Documentation
Regexp specifying where not to break lines when filling.
This regexp matches certain tokens comprised entirely of
characters matching the regexp fortran-break-delimiters-re that should
not be split by filling. Each element is assumed to be two
characters long.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
;; The ">=", etc F77 extensions are supported by g77.
(defconst fortran-no-break-re
(regexp-opt '("**" "//" "=>" ">=" "<=" "==" "/=") 'paren)
"Regexp specifying where not to break lines when filling.
This regexp matches certain tokens comprised entirely of
characters matching the regexp `fortran-break-delimiters-re' that should
not be split by filling. Each element is assumed to be two
characters long.")