Function: tpu-select
tpu-select is an interactive and byte-compiled function defined in
tpu-edt.el.gz.
Signature
(tpu-select &optional QUIET)
Documentation
Set the mark to define one end of a region.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
;;;
;;; Select / Unselect
;;;
(defun tpu-select (&optional quiet)
"Set the mark to define one end of a region."
(interactive "P")
(cond ((tpu-mark)
(tpu-unselect quiet))
(t
(tpu-set-mark (point))
(tpu-update-mode-line)
(if (not quiet) (message "Move the text cursor to select text.")))))