Function: eshell-subcommand-arg-values
eshell-subcommand-arg-values is a byte-compiled function defined in
esh-cmd.el.gz.
This function is obsolete since 31.1.
Signature
(eshell-subcommand-arg-values TERMS)
Documentation
Convert subcommand arguments {x} to ${x}, in order to take their values.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defun eshell-subcommand-arg-values (terms)
"Convert subcommand arguments {x} to ${x}, in order to take their values."
(declare (obsolete nil "31.1"))
(setq terms (cdr terms)) ; skip command argument
(while terms
(if (and (listp (car terms))
(eq (caar terms) 'eshell-as-subcommand))
(setcar terms `(eshell-convert
(eshell-command-to-value ,(car terms)))))
(setq terms (cdr terms))))