diff options
| -rw-r--r-- | lisp/frame.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index b161a8119ae..191210141df 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -664,7 +664,13 @@ the user during startup." | |||
| 664 | "Select the ARG'th different visible frame on current display, and raise it. | 664 | "Select the ARG'th different visible frame on current display, and raise it. |
| 665 | All frames are arranged in a cyclic order. | 665 | All frames are arranged in a cyclic order. |
| 666 | This command selects the frame ARG steps away in that order. | 666 | This command selects the frame ARG steps away in that order. |
| 667 | A negative ARG moves in the opposite order." | 667 | A negative ARG moves in the opposite order. |
| 668 | |||
| 669 | To make this command work properly, you must tell Emacs | ||
| 670 | how the system (or the window manager) generally handles | ||
| 671 | focus-switching between windows. If moving the mouse onto a window | ||
| 672 | selects it (gives it focus), set `focus-follows-mouse' to t. | ||
| 673 | Otherwise, that variable should be nil." | ||
| 668 | (interactive "p") | 674 | (interactive "p") |
| 669 | (let ((frame (selected-frame))) | 675 | (let ((frame (selected-frame))) |
| 670 | (while (> arg 0) | 676 | (while (> arg 0) |