Function: tpu-store-text
tpu-store-text is an interactive and byte-compiled function defined in
tpu-edt.el.gz.
Signature
(tpu-store-text)
Documentation
Copy the selected region to the cut buffer without deleting it.
The text is saved for the tpu-paste command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-store-text nil
"Copy the selected region to the cut buffer without deleting it.
The text is saved for the tpu-paste command."
(interactive)
(cond ((tpu-mark)
(cond (tpu-rectangular-p
(save-excursion
(tpu-arrange-rectangle)
(setq picture-killed-rectangle
(extract-rectangle (point) (tpu-mark))))
(tpu-unselect t))
(t
(setq tpu-last-deleted-region
(buffer-substring (tpu-mark) (point)))
(tpu-unselect t))))
((tpu-check-match)
(setq tpu-last-deleted-region
(buffer-substring (tpu-match-beginning) (tpu-match-end)))
(tpu-unset-match))
(t
(tpu-error "No selection active."))))