Function: f90-upcase-keywords

f90-upcase-keywords is an interactive and byte-compiled function defined in f90.el.gz.

Signature

(f90-upcase-keywords)

Documentation

Upcase all F90 keywords in the buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-upcase-keywords ()
  "Upcase all F90 keywords in the buffer."
  (interactive "*")
  (f90-change-keywords 'upcase-word))