Function: eshell-flatten-and-stringify

eshell-flatten-and-stringify is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell-flatten-and-stringify &rest ARGS)

Documentation

Flatten and stringify all of the ARGS into a single string.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defsubst eshell-flatten-and-stringify (&rest args)
  "Flatten and stringify all of the ARGS into a single string."
  (mapconcat #'eshell-stringify (flatten-tree args) " "))