diff options
| author | Richard M. Stallman | 2002-02-20 22:28:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-02-20 22:28:44 +0000 |
| commit | bb578a72d1e91aa8d35c939a5f76a01f29609e86 (patch) | |
| tree | 27ff251b21bae6d03ceb3d70f9b4d04785ed4733 | |
| parent | b2bd7afff62e58ade89826059e6173d092480725 (diff) | |
| download | emacs-bb578a72d1e91aa8d35c939a5f76a01f29609e86.tar.gz emacs-bb578a72d1e91aa8d35c939a5f76a01f29609e86.zip | |
(other-frame): Doc fix.
| -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) |