Function: eshell-eval-indices

eshell-eval-indices is a byte-compiled function defined in esh-var.el.gz.

Signature

(eshell-eval-indices INDICES)

Documentation

Evaluate INDICES, a list of index-lists generated by eshell-parse-indices.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-var.el.gz
(defun eshell-eval-indices (indices)
  "Evaluate INDICES, a list of index-lists generated by `eshell-parse-indices'."
  (mapcar (lambda (i) (mapcar #'eval i)) indices))