Variable: eshell-debug-command

eshell-debug-command is a customizable variable defined in esh-cmd.el.gz.

Value

nil

Documentation

If non-nil, enable Eshell debugging code.

This is slow, and only useful for debugging problems with Eshell. If you change this without using customize after Eshell has loaded, you must re-load esh-cmd.el.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-cmd.el.gz
(defcustom eshell-debug-command nil
  "If non-nil, enable Eshell debugging code.
This is slow, and only useful for debugging problems with Eshell.
If you change this without using customize after Eshell has loaded,
you must re-load `esh-cmd.el'."
  :initialize 'custom-initialize-default
  :set (lambda (symbol value)
	 (set symbol value)
	 (load "esh-cmd"))
  :type 'boolean)