Function: cua-cancel

cua-cancel is an interactive and byte-compiled function defined in cua-base.el.gz.

Signature

(cua-cancel)

Documentation

Cancel the active region, rectangle, or global mark.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-base.el.gz
;;; Generic commands for regions, rectangles, and global marks

(defun cua-cancel ()
  "Cancel the active region, rectangle, or global mark."
  (interactive)
  (deactivate-mark)
  (if (fboundp 'cua--cancel-rectangle)
      (cua--cancel-rectangle)))