Variable: f90-mode-hook

f90-mode-hook is a customizable variable defined in f90.el.gz.

Value

nil

Documentation

Hook run when entering F90 mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defcustom f90-mode-hook nil
  "Hook run when entering F90 mode."
  :type    'hook
  ;; Not the only safe options, but some common ones.
  :safe    (lambda (value) (member value '((f90-add-imenu-menu) nil)))
  :options '(f90-add-imenu-menu)
  :group   'f90)