aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorGlenn Morris2012-05-01 14:48:46 -0400
committerGlenn Morris2012-05-01 14:48:46 -0400
commitbeb83b5ac5c552ae221fc96cf55de18936978736 (patch)
treec63ba9f623285b2f3ea8d29b2acbfa3db0a35a2b /lisp/eshell
parentd80ac57b32c2cf2b3b86e60a550858c81f214ebc (diff)
downloademacs-beb83b5ac5c552ae221fc96cf55de18936978736.tar.gz
emacs-beb83b5ac5c552ae221fc96cf55de18936978736.zip
* lisp/eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-cmd.el14
1 files changed, 9 insertions, 5 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el
index 6075b56915b..86de9725790 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -1,6 +1,6 @@
1;;; esh-cmd.el --- command invocation 1;;; esh-cmd.el --- command invocation
2 2
3;; Copyright (C) 1999-2012 Free Software Foundation, Inc. 3;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
4 4
5;; Author: John Wiegley <johnw@gnu.org> 5;; Author: John Wiegley <johnw@gnu.org>
6 6
@@ -236,10 +236,14 @@ return non-nil if the command is complex."
236 :group 'eshell-cmd) 236 :group 'eshell-cmd)
237 237
238(defcustom eshell-debug-command nil 238(defcustom eshell-debug-command nil
239 "If non-nil, enable debugging code. SSLLOOWW. 239 "If non-nil, enable Eshell debugging code.
240This option is only useful for reporting bugs. If you enable it, you 240This is slow, and only useful for debugging problems with Eshell.
241will have to visit the file 'eshell-cmd.el' and run the command 241If you change this without using customize after Eshell has loaded,
242\\[eval-buffer]." 242you must re-load 'eshell-cmd.el'."
243 :initialize 'custom-initialize-default
244 :set (lambda (symbol value)
245 (set sym val)
246 (load-library "esh-cmd"))
243 :type 'boolean 247 :type 'boolean
244 :group 'eshell-cmd) 248 :group 'eshell-cmd)
245 249