diff options
| author | Glenn Morris | 2012-05-01 14:48:46 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-05-01 14:48:46 -0400 |
| commit | beb83b5ac5c552ae221fc96cf55de18936978736 (patch) | |
| tree | c63ba9f623285b2f3ea8d29b2acbfa3db0a35a2b | |
| parent | d80ac57b32c2cf2b3b86e60a550858c81f214ebc (diff) | |
| download | emacs-beb83b5ac5c552ae221fc96cf55de18936978736.tar.gz emacs-beb83b5ac5c552ae221fc96cf55de18936978736.zip | |
* lisp/eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/eshell/esh-cmd.el | 14 |
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 @@ | |||
| 1 | 2012-05-01 Glenn Morris <rgm@gnu.org> | 1 | 2012-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 | ||
| 5 | 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com> | 7 | 2012-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. |
| 240 | This option is only useful for reporting bugs. If you enable it, you | 240 | This is slow, and only useful for debugging problems with Eshell. |
| 241 | will have to visit the file 'eshell-cmd.el' and run the command | 241 | If you change this without using customize after Eshell has loaded, |
| 242 | \\[eval-buffer]." | 242 | you 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 | ||