Function: tpu-undelete-words

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

Signature

(tpu-undelete-words NUM)

Documentation

Insert words deleted by last TPU-edt word-deletion command.

With argument reinserts words that many times.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-undelete-words (num)
  "Insert words deleted by last TPU-edt word-deletion command.
With argument reinserts words that many times."
  (interactive "p")
  (let ((beg (point)))
    (while (> num 0)
      (insert tpu-last-deleted-words)
      (setq num (1- num)))
    (goto-char beg)))