Function: eshell/unset
eshell/unset is a byte-compiled function defined in esh-var.el.gz.
Signature
(eshell/unset &rest ARGS)
Documentation
Unset an environment variable.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-var.el.gz
(defun eshell/unset (&rest args)
"Unset an environment variable."
(while args
(if (stringp (car args))
(setenv (car args) nil t))
(setq args (cdr args))))