diff options
| author | Eric Hanchrow | 2011-09-12 10:48:34 -0400 |
|---|---|---|
| committer | Chong Yidong | 2011-09-12 10:48:34 -0400 |
| commit | 162546271fc98c6897130cf43fce8271e5e94b33 (patch) | |
| tree | 5593525a9f38d3f7b503fd9a485ad4fc479a4815 | |
| parent | fa819fed539dd8de122709d94fe28ed8f4901e4a (diff) | |
| download | emacs-162546271fc98c6897130cf43fce8271e5e94b33.tar.gz emacs-162546271fc98c6897130cf43fce8271e5e94b33.zip | |
* doc/emacs/frames.texi (Frame Commands): Doc fix for delete-other-frames.
Note that it only deletes frames on current terminal.
| -rw-r--r-- | doc/emacs/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/emacs/frames.texi | 12 |
2 files changed, 14 insertions, 3 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index b9dbddad3ca..5fba9eda3b0 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-12 Eric Hanchrow <eric.hanchrow@gmail.com> | ||
| 2 | |||
| 3 | * frames.texi (Frame Commands): Note that delete-other-frames only | ||
| 4 | deletes frames on current terminal. | ||
| 5 | |||
| 1 | 2011-09-10 Eli Zaretskii <eliz@gnu.org> | 6 | 2011-09-10 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * sending.texi (Mail Misc): Document mail-add-attachment. | 8 | * sending.texi (Mail Misc): Document mail-add-attachment. |
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index 328deaec357..8ca598c3348 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -448,17 +448,23 @@ terminal. | |||
| 448 | @item C-x 5 1 | 448 | @item C-x 5 1 |
| 449 | @kindex C-x 5 1 | 449 | @kindex C-x 5 1 |
| 450 | @findex delete-other-frames | 450 | @findex delete-other-frames |
| 451 | Delete all frames except the selected one. | 451 | Delete all frames on the current terminal, except the selected one. |
| 452 | @end table | 452 | @end table |
| 453 | 453 | ||
| 454 | The @kbd{C-x 5 0} (@code{delete-frame}) command will never delete | 454 | The @kbd{C-x 5 0} (@code{delete-frame}) command never deletes the |
| 455 | the last frame, to prevent you from losing the ability to interact | 455 | last frame. This prevents you from losing the ability to interact |
| 456 | with the Emacs process. Note that when Emacs is run as a daemon | 456 | with the Emacs process. Note that when Emacs is run as a daemon |
| 457 | (@pxref{Emacs Server}), there is always a ``virtual frame'' that | 457 | (@pxref{Emacs Server}), there is always a ``virtual frame'' that |
| 458 | remains after all the ordinary, interactive frames are deleted. In | 458 | remains after all the ordinary, interactive frames are deleted. In |
| 459 | this case, @kbd{C-x 5 0} can delete the last interactive frame; you | 459 | this case, @kbd{C-x 5 0} can delete the last interactive frame; you |
| 460 | can use @command{emacsclient} to reconnect to the Emacs session. | 460 | can use @command{emacsclient} to reconnect to the Emacs session. |
| 461 | 461 | ||
| 462 | The @kbd{C-x 5 1} (@code{delete-other-frames}) command only deletes | ||
| 463 | frames on the current terminal. For example, if you call it from an X | ||
| 464 | frame, it deletes the other frames on that X display; if the Emacs | ||
| 465 | process has frames open on other X displays or text terminals, those | ||
| 466 | are not deleted. | ||
| 467 | |||
| 462 | @vindex focus-follows-mouse | 468 | @vindex focus-follows-mouse |
| 463 | On X, you may have to tell Emacs how the window manager handles | 469 | On X, you may have to tell Emacs how the window manager handles |
| 464 | focus-switching between windows, in order for @kbd{C-x 5 o} | 470 | focus-switching between windows, in order for @kbd{C-x 5 o} |