aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-05-01 14:48:46 -0400
committerGlenn Morris2012-05-01 14:48:46 -0400
commitbeb83b5ac5c552ae221fc96cf55de18936978736 (patch)
treec63ba9f623285b2f3ea8d29b2acbfa3db0a35a2b
parentd80ac57b32c2cf2b3b86e60a550858c81f214ebc (diff)
downloademacs-beb83b5ac5c552ae221fc96cf55de18936978736.tar.gz
emacs-beb83b5ac5c552ae221fc96cf55de18936978736.zip
* lisp/eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/eshell/esh-cmd.el14
2 files changed, 11 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e4c45a23478..887441d1c9d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12012-05-01 Glenn Morris <rgm@gnu.org> 12012-05-01 Glenn Morris <rgm@gnu.org>
2 2
3 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
4
3 * cus-edit.el (custom-variable-documentation): Simplify with format. 5 * cus-edit.el (custom-variable-documentation): Simplify with format.
4 6
52012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com> 72012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
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