Function: eshell-escape-arg
eshell-escape-arg is a byte-compiled function defined in
esh-arg.el.gz.
This function is obsolete since 31.1.
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."
(declare (obsolete nil "31.1"))
(if (stringp string)
(add-text-properties 0 (length string) '(escaped t) string))
string)