Function: eshell--mark-as-output

eshell--mark-as-output is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell--mark-as-output START END &optional OBJECT)

Documentation

Mark the text from START to END as Eshell output.

OBJECT can be a buffer or string. If nil, mark the text in the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defun eshell--mark-as-output (start end &optional object)
  "Mark the text from START to END as Eshell output.
OBJECT can be a buffer or string.  If nil, mark the text in the
current buffer."
  (with-silent-modifications
    (add-text-properties start end eshell-command-output-properties
                         object)))