Variable: f90-no-break-re

f90-no-break-re is a variable defined in f90.el.gz.

Value

"\\((/\\|\\*\\*\\|/[)/=]\\|<=\\|=[=>]\\|>=\\)"

Documentation

Regexp specifying two-character tokens not to split when breaking lines.

Each token has one or more of the characters from f90-break-delimiters. Note that if only one of the characters is from that variable, then the presence of the token here allows a line-break before or after the other character, where a break would not normally be allowed. This minor issue currently only affects "(/" and "/)".

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defconst f90-no-break-re
  (regexp-opt '("**" "//" "=>" ">=" "<=" "==" "/=" "(/" "/)") 'paren)
  "Regexp specifying two-character tokens not to split when breaking lines.
Each token has one or more of the characters from `f90-break-delimiters'.
Note that if only one of the characters is from that variable,
then the presence of the token here allows a line-break before or
after the other character, where a break would not normally be
allowed.  This minor issue currently only affects \"(/\" and \"/)\".")