Function: eshell--unmark-string-as-output

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

Signature

(eshell--unmark-string-as-output STRING)

Documentation

Unmark STRING as Eshell output.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defun eshell--unmark-string-as-output (string)
  "Unmark STRING as Eshell output."
  (remove-list-of-text-properties
   0 (length string)
   '(rear-nonsticky front-sticky field insert-in-front-hooks)
   string)
  string)