Function: eshell/unset
eshell/unset is a byte-compiled function defined in esh-var.el.gz.
Signature
(eshell/unset &rest ARGS)
Documentation
Unset one or more variables.
This is equivalent to calling eshell/set for all of ARGS with
the values of nil for each.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-var.el.gz
(defun eshell/unset (&rest args)
"Unset one or more variables.
This is equivalent to calling `eshell/set' for all of ARGS with
the values of nil for each."
(dolist (arg args)
(eshell-set-variable arg nil)))