Variable: fortran-directive-re

fortran-directive-re is a customizable variable defined in fortran.el.gz.

Value

"^[     ]*#.*"

Documentation

Regexp to match a directive line.

The matching text will be fontified with font-lock-preprocessor-face. The matching line will be given zero indentation.

This variable was added, or its default value changed, in Emacs 22.1.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defcustom fortran-directive-re
  "^[ \t]*#.*"
  "Regexp to match a directive line.
The matching text will be fontified with `font-lock-preprocessor-face'.
The matching line will be given zero indentation."
  :version "22.1"
  :type    'regexp
  :safe    'stringp
  :group   'fortran-indent)