Function: eshell-glob-chars-regexp
eshell-glob-chars-regexp is a byte-compiled function defined in
em-glob.el.gz.
Signature
(eshell-glob-chars-regexp)
Documentation
Return the lazily-created value for eshell-glob-chars-regexp(var)/eshell-glob-chars-regexp(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-glob.el.gz
(defsubst eshell-glob-chars-regexp ()
"Return the lazily-created value for `eshell-glob-chars-regexp'."
(or eshell-glob-chars-regexp
(setq-local eshell-glob-chars-regexp
(rx-to-string `(+ (any ,@eshell-glob-chars-list)) t))))