Function: edt-undelete-word

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

Signature

(edt-undelete-word)

Documentation

Undelete previous deleted word(s).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; UND W
;;;

(defun edt-undelete-word ()
  "Undelete previous deleted word(s)."
  (interactive "*")
  (point-to-register 1)
  (insert edt-last-deleted-words)
  (register-to-point 1))