Variable: f90-auto-keyword-case

f90-auto-keyword-case is a customizable variable defined in f90.el.gz.

Value

nil

Documentation

Automatic case conversion of keywords.

The options are downcase-word, upcase-word, capitalize-word and nil.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defcustom f90-auto-keyword-case nil
  "Automatic case conversion of keywords.
The options are `downcase-word', `upcase-word', `capitalize-word' and nil."
  :type  '(choice (const downcase-word) (const upcase-word)
                  (const capitalize-word) (const nil))
  :safe (lambda (value) (memq value '(downcase-word
                                      capitalize-word upcase-word nil)))
  :group 'f90)