Function: f90-upcase-region-keywords
f90-upcase-region-keywords is an interactive and byte-compiled
function defined in f90.el.gz.
Signature
(f90-upcase-region-keywords BEG END)
Documentation
Upcase all F90 keywords in the region.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-upcase-region-keywords (beg end)
"Upcase all F90 keywords in the region."
(interactive "*r")
(f90-change-keywords 'upcase-word beg end))