Variable: f90-operators-re
f90-operators-re is a variable defined in f90.el.gz.
Value
"\\.\\(and\\|eqv?\\|false\\|g[et]\\|l[et]\\|n\\(?:e\\(?:qv\\)?\\|ot\\)\\|or\\|true\\)\\."
Documentation
Regexp matching intrinsic operators.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defconst f90-operators-re
(concat "\\."
(regexp-opt '("and" "eq" "eqv" "false" "ge" "gt" "le" "lt" "ne"
"neqv" "not" "or" "true") t)
"\\.")
"Regexp matching intrinsic operators.")