Function: tpu-cut

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

Signature

(tpu-cut ARG)

Documentation

Copy selected region to the cut buffer.

In the absence of an argument, delete the selected region too.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-cut (arg)
  "Copy selected region to the cut buffer.
In the absence of an argument, delete the selected region too."
  (interactive "P")
  (if arg (tpu-store-text) (tpu-cut-text)))