diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/help-macro.el | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1b115e5c5d5..32540b213dc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-10-03 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * help-macro.el (three-step-help): | ||
| 4 | Revert 2012-09-29 change. (Bug#12567) | ||
| 5 | |||
| 1 | 2012-10-03 Martin Rudalics <rudalics@gmx.at> | 6 | 2012-10-03 Martin Rudalics <rudalics@gmx.at> |
| 2 | 7 | ||
| 3 | * menu-bar.el (kill-this-buffer): Don't do anything when | 8 | * menu-bar.el (kill-this-buffer): Don't do anything when |
diff --git a/lisp/help-macro.el b/lisp/help-macro.el index 0600484b6df..63ae02eb90d 100644 --- a/lisp/help-macro.el +++ b/lisp/help-macro.el | |||
| @@ -69,6 +69,11 @@ | |||
| 69 | 69 | ||
| 70 | (require 'backquote) | 70 | (require 'backquote) |
| 71 | 71 | ||
| 72 | ;; This needs to be autoloaded because it is used in the | ||
| 73 | ;; make-help-screen macro. Using (bound-and-true-p three-step-help) | ||
| 74 | ;; is not an acceptable alternative, because nothing loads help-macro | ||
| 75 | ;; in a normal session, so any user customization would never be applied. | ||
| 76 | ;;;###autoload | ||
| 72 | (defcustom three-step-help nil | 77 | (defcustom three-step-help nil |
| 73 | "Non-nil means give more info about Help command in three steps. | 78 | "Non-nil means give more info about Help command in three steps. |
| 74 | The three steps are simple prompt, prompt with all options, and | 79 | The three steps are simple prompt, prompt with all options, and |