Function: eshell-no-command-globbing
eshell-no-command-globbing is a byte-compiled function defined in
em-glob.el.gz.
Signature
(eshell-no-command-globbing TERMS)
Documentation
Don't glob the command argument. Reflect this by modifying TERMS.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-glob.el.gz
(defun eshell-no-command-globbing (terms)
"Don't glob the command argument. Reflect this by modifying TERMS."
(ignore
(pcase (car terms)
((or `(eshell-extended-glob ,term)
`(eshell-splice-args (eshell-extended-glob ,term)))
(setcar terms term)))))