Function: eshell-escape-arg

eshell-escape-arg is a byte-compiled function defined in esh-arg.el.gz.

Signature

(eshell-escape-arg STRING)

Documentation

Return STRING with the escaped property on it.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defsubst eshell-escape-arg (string)
  "Return STRING with the `escaped' property on it."
  (if (stringp string)
      (add-text-properties 0 (length string) '(escaped t) string))
  string)