diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-03-25 10:11:09 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-03-25 10:11:09 +0000 |
commit | cb0b6766505d2a23687cb8b144cf1935ea76f3af (patch) | |
tree | 5045332fe4ea628a3c6cad18e001360265063990 /lisp/help.el | |
parent | 71c3f28fb7d178e546ce05290ccc4927041dc342 (diff) | |
download | emacs-cb0b6766505d2a23687cb8b144cf1935ea76f3af.tar.gz emacs-cb0b6766505d2a23687cb8b144cf1935ea76f3af.tar.bz2 emacs-cb0b6766505d2a23687cb8b144cf1935ea76f3af.zip |
(print-help-return-message): Suggest to use display-buffer instead of
switch-to-buffer-other-window to restore the previous window without
selecting it.
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 5eef13ff9c9..1661779ca74 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -143,7 +143,7 @@ specifies what to do when the user exits the help buffer." ((not (one-window-p t)) (setq help-return-method (cons (selected-window) 'quit-window)) - "Type \\[switch-to-buffer-other-window] RET to restore the other window.") + "Type \\[display-buffer] RET to restore the other window.") (pop-up-windows (setq help-return-method (cons (selected-window) t)) "Type \\[delete-other-windows] to remove help window.") |