aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)