Function: wdired-upcase-word
wdired-upcase-word is an interactive and byte-compiled function
defined in wdired.el.gz.
Signature
(wdired-upcase-word ARG)
Documentation
WDired version of upcase-word.
Like original function but it skips read-only words.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/wdired.el.gz
(defun wdired-upcase-word (arg)
"WDired version of `upcase-word'.
Like original function but it skips read-only words."
(interactive "p")
(wdired-xcase-word 'upcase-word arg))