Function: downcase-dwim

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

Signature

(downcase-dwim ARG)

Documentation

Downcase words in the region, if active; if not, downcase word at point.

If the region is active, this function calls downcase-region. Otherwise, it calls downcase-word, with prefix argument passed to it to downcase ARG words.

Probably introduced at or before Emacs version 25.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun downcase-dwim (arg)
    "Downcase words in the region, if active; if not, downcase word at point.
If the region is active, this function calls `downcase-region'.
Otherwise, it calls `downcase-word', with prefix argument passed to it
to downcase ARG words."
  (interactive "*p")
  (if (use-region-p)
      (downcase-region (region-beginning) (region-end) (region-noncontiguous-p))
    (downcase-word arg)))