Function: edt-append

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

Signature

(edt-append)

Documentation

Append this kill region to last killed region.

Key Bindings

Source Code

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

(defun edt-append ()
  "Append this kill region to last killed region."
  (interactive "*")
  (edt-check-selection)
  (append-next-kill)
  (kill-region (mark) (point))
  (message "Selected text APPENDED to kill ring"))