Function: eshell-output-object-to-target

eshell-output-object-to-target is a byte-compiled function defined in esh-io.el.gz.

Signature

(eshell-output-object-to-target OBJECT TARGET)

Documentation

Output OBJECT to TARGET.

Returns what was actually sent, or nil if nothing was sent.

Implementations

(eshell-output-object-to-target OBJECT (TARGET eshell-princ-target)) in `em-script.el'.

Output OBJECT to the `princ' function TARGET.

(eshell-output-object-to-target OBJECT (TARGET eshell-function-target)) in `esh-io.el'.

Output OBJECT to the Eshell function TARGET.

(eshell-output-object-to-target OBJECT (TARGET process)) in `esh-io.el'.

Output OBJECT to the process TARGET.

(eshell-output-object-to-target OBJECT (TARGET marker)) in `esh-io.el'.

Output OBJECT to the marker TARGET.

(eshell-output-object-to-target OBJECT (TARGET symbol)) in `esh-io.el'.

Output OBJECT to the value of the symbol TARGET.

(eshell-output-object-to-target OBJECT (TARGET (eql t))) in `esh-io.el'.

Output OBJECT to the display.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(cl-defgeneric eshell-output-object-to-target (object target)
  "Output OBJECT to TARGET.
Returns what was actually sent, or nil if nothing was sent.")