Function: eshell-list-to-string
eshell-list-to-string is a byte-compiled function defined in
esh-util.el.gz.
Signature
(eshell-list-to-string LIST)
Documentation
Convert LIST into a single string separated by spaces.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defsubst eshell-list-to-string (list)
"Convert LIST into a single string separated by spaces."
(mapconcat (lambda (i) (eshell-stringify i t)) list " "))