Function: eshell-update-markers
eshell-update-markers is a byte-compiled function defined in
esh-mode.el.gz.
Signature
(eshell-update-markers PMARK)
Documentation
Update the input and output markers relative to point and PMARK.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-update-markers (pmark)
"Update the input and output markers relative to point and PMARK."
(set-marker eshell-last-input-start pmark)
(set-marker eshell-last-input-end (point))
(set-marker eshell-last-output-end (point)))