Function: eshell/listify
eshell/listify is a byte-compiled function defined in em-basic.el.gz.
Signature
(eshell/listify &rest ARGS)
Documentation
Return the argument(s) as a single list.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-basic.el.gz
(defun eshell/listify (&rest args)
"Return the argument(s) as a single list."
(if (> (length args) 1)
args
(if (listp (car args))
(car args)
(list (car args)))))