aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-02-20 22:28:44 +0000
committerRichard M. Stallman2002-02-20 22:28:44 +0000
commitbb578a72d1e91aa8d35c939a5f76a01f29609e86 (patch)
tree27ff251b21bae6d03ceb3d70f9b4d04785ed4733
parentb2bd7afff62e58ade89826059e6173d092480725 (diff)
downloademacs-bb578a72d1e91aa8d35c939a5f76a01f29609e86.tar.gz
emacs-bb578a72d1e91aa8d35c939a5f76a01f29609e86.zip
(other-frame): Doc fix.
-rw-r--r--lisp/frame.el8
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.
665All frames are arranged in a cyclic order. 665All frames are arranged in a cyclic order.
666This command selects the frame ARG steps away in that order. 666This command selects the frame ARG steps away in that order.
667A negative ARG moves in the opposite order." 667A negative ARG moves in the opposite order.
668
669To make this command work properly, you must tell Emacs
670how the system (or the window manager) generally handles
671focus-switching between windows. If moving the mouse onto a window
672selects it (gives it focus), set `focus-follows-mouse' to t.
673Otherwise, 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)