diff options
author | Martin Rudalics <rudalics@gmx.at> | 2011-08-23 11:31:54 +0200 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2011-08-23 11:31:54 +0200 |
commit | 3bbf23bc315e8cf47c459148dad86adeb3e38242 (patch) | |
tree | d328f929970b81c92186c1003155798ae3551797 /lisp/help.el | |
parent | 425cc014ac9191debe8c01dc360685486bba0ff1 (diff) | |
download | emacs-3bbf23bc315e8cf47c459148dad86adeb3e38242.tar.gz emacs-3bbf23bc315e8cf47c459148dad86adeb3e38242.tar.bz2 emacs-3bbf23bc315e8cf47c459148dad86adeb3e38242.zip |
Fix message in help-window-setup (Bug#9341).
* help.el (help-window-setup): Fix message displayed when other
window is reused. (Bug#9341)
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index e6496f625d1..710dc34ea89 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -1104,7 +1104,7 @@ This relies on `display-buffer-window' being correctly set up by ((eq help-value 'new-window) "Type \\[delete-other-windows] to delete the help window") ((eq help-value 'reuse-other-window) - "Type \\[switch-to-prev-buffer] RET to restore previous buffer")) + "Type \"q\" in other window to quit")) help-window 'other)) (t ;; Not much to say here. |