Function: eshell-get-history
eshell-get-history is a byte-compiled function defined in
em-hist.el.gz.
Signature
(eshell-get-history INDEX &optional RING)
Documentation
Get an input line from the history ring.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-hist.el.gz
(defun eshell-get-history (index &optional ring)
"Get an input line from the history ring."
(ring-ref (or ring eshell-history-ring) index))