Function: subword-downcase

subword-downcase is an interactive and byte-compiled function defined in subword.el.gz.

Signature

(subword-downcase ARG)

Documentation

Do the same as downcase-word but on subwords.

See the command subword-mode(var)/subword-mode(fun) for a description of subwords. Optional argument ARG is the same as for downcase-word.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/subword.el.gz
(defun subword-downcase (arg)
  "Do the same as `downcase-word' but on subwords.
See the command `subword-mode' for a description of subwords.
Optional argument ARG is the same as for `downcase-word'."
  (interactive "p")
  (let ((start (point)))
    (downcase-region (point) (subword-forward arg))
    (when (< arg 0)
      (goto-char start))))