Function: clipboard-kill-ring-save
clipboard-kill-ring-save is an interactive and byte-compiled function
defined in menu-bar.el.gz.
Signature
(clipboard-kill-ring-save BEG END &optional REGION)
Documentation
Copy region to kill ring, and save in the GUI's clipboard.
If the optional argument REGION is non-nil, the function ignores BEG and END, and saves the current region instead.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/menu-bar.el.gz
(defun clipboard-kill-ring-save (beg end &optional region)
"Copy region to kill ring, and save in the GUI's clipboard.
If the optional argument REGION is non-nil, the function ignores
BEG and END, and saves the current region instead."
(interactive "r\np")
(let ((select-enable-clipboard t))
(kill-ring-save beg end region)))