Function: eshell-glob-p
eshell-glob-p is a byte-compiled function defined in em-glob.el.gz.
Signature
(eshell-glob-p PATTERN)
Documentation
Return non-nil if PATTERN has any special glob characters.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-glob.el.gz
(defun eshell-glob-p (pattern)
"Return non-nil if PATTERN has any special glob characters."
(string-match (eshell-glob-chars-regexp) pattern))