Function: eshell--range-string-p

eshell--range-string-p is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell--range-string-p STRING)

Documentation

Return non-nil if STRING has been marked as a range.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defsubst eshell--range-string-p (string)
  "Return non-nil if STRING has been marked as a range."
  (and (stringp string)
       (text-property-any 0 (length string) 'eshell-range t string)))