Function: eshell-clipboard-append
eshell-clipboard-append is a byte-compiled function defined in
esh-io.el.gz.
Signature
(eshell-clipboard-append STRING)
Documentation
Call kill-append with STRING, if it is indeed a string.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defun eshell-clipboard-append (string)
"Call `kill-append' with STRING, if it is indeed a string."
(if (stringp string)
(let ((select-enable-clipboard t))
(kill-append string nil))))