Function: eshell-no-command-conversion

eshell-no-command-conversion is a byte-compiled function defined in esh-cmd.el.gz.

Signature

(eshell-no-command-conversion TERMS)

Documentation

Don't convert the command argument.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defun eshell-no-command-conversion (terms)
  "Don't convert the command argument."
  (ignore
   (if (and (listp (car terms))
	    (eq (caar terms) 'eshell-convert))
       (setcar terms (cadr (car terms))))))