Function: pascal-change-keywords
pascal-change-keywords is a byte-compiled function defined in
pascal.el.gz.
Signature
(pascal-change-keywords CHANGE-WORD)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/pascal.el.gz
;; Change the keywords according to argument.
(defun pascal-change-keywords (change-word)
(save-excursion
(let ((keyword-re (concat "\\<\\("
(mapconcat 'identity pascal-keywords "\\|")
"\\)\\>")))
(goto-char (point-min))
(while (re-search-forward keyword-re nil t)
(funcall change-word -1)))))