Function: eshell-exit-success-p
eshell-exit-success-p is a byte-compiled function defined in
esh-cmd.el.gz.
Signature
(eshell-exit-success-p)
Documentation
Return non-nil if the last command was successful.
This means an exit code of 0.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defun eshell-exit-success-p ()
"Return non-nil if the last command was successful.
This means an exit code of 0."
(= eshell-last-command-status 0))