Function: pascal-upcase-keywords
pascal-upcase-keywords is an interactive and byte-compiled function
defined in pascal.el.gz.
Signature
(pascal-upcase-keywords)
Documentation
Upcase all Pascal keywords in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/pascal.el.gz
(defun pascal-upcase-keywords ()
"Upcase all Pascal keywords in the buffer."
(interactive)
(pascal-change-keywords 'upcase-word))