Variable: f90-end-if-re

f90-end-if-re is a variable defined in f90.el.gz.

Value

"end[   ]*\\(forall\\|if\\|select\\|where\\)\\_>"

Documentation

Regexp matching the end of an IF, SELECT, WHERE, FORALL block.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defconst f90-end-if-re
  (concat "end[ \t]*"
          (regexp-opt '("if" "select" "where" "forall") 'paren)
          "\\_>")
  "Regexp matching the end of an IF, SELECT, WHERE, FORALL block.")