diff options
| author | Eli Zaretskii | 2006-03-25 10:11:09 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-03-25 10:11:09 +0000 |
| commit | cb0b6766505d2a23687cb8b144cf1935ea76f3af (patch) | |
| tree | 5045332fe4ea628a3c6cad18e001360265063990 | |
| parent | 71c3f28fb7d178e546ce05290ccc4927041dc342 (diff) | |
| download | emacs-cb0b6766505d2a23687cb8b144cf1935ea76f3af.tar.gz 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.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/help.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d4196ab799b..65f5c199bac 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change) | ||
| 2 | |||
| 3 | * help.el (print-help-return-message): Suggest to use | ||
| 4 | display-buffer instead of switch-to-buffer-other-window to restore | ||
| 5 | the previous window without selecting it. | ||
| 6 | |||
| 1 | 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 7 | 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 8 | ||
| 3 | * frame.el (select-frame-by-name): Call x-focus-frame also when | 9 | * frame.el (select-frame-by-name): Call x-focus-frame also when |
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." | |||
| 143 | ((not (one-window-p t)) | 143 | ((not (one-window-p t)) |
| 144 | (setq help-return-method | 144 | (setq help-return-method |
| 145 | (cons (selected-window) 'quit-window)) | 145 | (cons (selected-window) 'quit-window)) |
| 146 | "Type \\[switch-to-buffer-other-window] RET to restore the other window.") | 146 | "Type \\[display-buffer] RET to restore the other window.") |
| 147 | (pop-up-windows | 147 | (pop-up-windows |
| 148 | (setq help-return-method (cons (selected-window) t)) | 148 | (setq help-return-method (cons (selected-window) t)) |
| 149 | "Type \\[delete-other-windows] to remove help window.") | 149 | "Type \\[delete-other-windows] to remove help window.") |