Variable: f90-program-block-re
f90-program-block-re is a variable defined in f90.el.gz.
Value
"\\(function\\|module\\|program\\|sub\\(?:\\(?:modul\\|routin\\)e\\)\\)"
Documentation
Regexp used to locate the start/end of a "subprogram".
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defconst f90-program-block-re
(regexp-opt '("program" "module" "subroutine" "function" "submodule") 'paren)
"Regexp used to locate the start/end of a \"subprogram\".")