Function: tpu-unselect

tpu-unselect is an interactive and byte-compiled function defined in tpu-edt.el.gz.

Signature

(tpu-unselect &optional QUIET)

Documentation

Remove the mark to unselect the current region.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-unselect (&optional quiet)
  "Remove the mark to unselect the current region."
  (interactive "P")
  (deactivate-mark)
  (setq mark-ring nil)
  (tpu-set-mark nil)
  (tpu-update-mode-line)
  (if (not quiet) (message "Selection canceled.")))