Function: upcase-word

upcase-word is an interactive function defined in casefiddle.c.

Signature

(upcase-word ARG)

Documentation

Convert to upper case from point to end of word, moving over.

If point is in the middle of a word, the part of that word before point is ignored when moving forward.

With negative argument, convert previous words but do not move. See also capitalize-word.

View in manual

Key Bindings

Source Code

// Defined in /usr/src/emacs/src/casefiddle.c
{
  return casify_word (CASE_UP, arg);
}