Function: edt-copy
edt-copy is an interactive and byte-compiled function defined in
edt.el.gz.
Signature
(edt-copy)
Documentation
Copy selected region to kill ring, but don't delete it!
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; COPY
;;;
(defun edt-copy ()
"Copy selected region to kill ring, but don't delete it!"
(interactive)
(edt-check-selection)
(copy-region-as-kill (mark) (point))
(edt-reset)
(message "Selected text COPIED to kill ring"))