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
   (when (and (listp (car terms))
	      (eq (caar terms) 'eshell-extended-glob))
     (setcar terms (cadr (car terms))))))