Function: eshell-kill-append

eshell-kill-append is a byte-compiled function defined in esh-io.el.gz.

Signature

(eshell-kill-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-kill-append (string)
  "Call `kill-append' with STRING, if it is indeed a string."
  (if (stringp string)
      (kill-append string nil)))