aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-09-30 10:39:00 +0000
committerEli Zaretskii2001-09-30 10:39:00 +0000
commit3d7f0a34bccb633299dc7a3131912c4518906ce8 (patch)
tree6dff9cc0e2854c27e3cf69b96b414ba6563b2431
parent20fa27a44765ff5b83a2b7c494035fc1d291b008 (diff)
downloademacs-3d7f0a34bccb633299dc7a3131912c4518906ce8.tar.gz
emacs-3d7f0a34bccb633299dc7a3131912c4518906ce8.zip
(Finding All Frames): Document that next-frame and
previous-frame are local to current terminal.
-rw-r--r--lispref/frames.texi12
1 files changed, 7 insertions, 5 deletions
diff --git a/lispref/frames.texi b/lispref/frames.texi
index 22d11d951bd..7d690139081 100644
--- a/lispref/frames.texi
+++ b/lispref/frames.texi
@@ -768,8 +768,9 @@ calls the function @code{delete-frame}. @xref{Misc Events}.
768@defun frame-list 768@defun frame-list
769The function @code{frame-list} returns a list of all the frames that 769The function @code{frame-list} returns a list of all the frames that
770have not been deleted. It is analogous to @code{buffer-list} for 770have not been deleted. It is analogous to @code{buffer-list} for
771buffers. The list that you get is newly created, so modifying the list 771buffers, and includes frames on all terminals. The list that you get is
772doesn't have any effect on the internals of Emacs. 772newly created, so modifying the list doesn't have any effect on the
773internals of Emacs.
773@end defun 774@end defun
774 775
775@defun visible-frame-list 776@defun visible-frame-list
@@ -780,9 +781,10 @@ This function returns a list of just the currently visible frames.
780 781
781@defun next-frame &optional frame minibuf 782@defun next-frame &optional frame minibuf
782The function @code{next-frame} lets you cycle conveniently through all 783The function @code{next-frame} lets you cycle conveniently through all
783the frames from an arbitrary starting point. It returns the ``next'' 784the frames on the current display from an arbitrary starting point. It
784frame after @var{frame} in the cycle. If @var{frame} is omitted or 785returns the ``next'' frame after @var{frame} in the cycle. If
785@code{nil}, it defaults to the selected frame (@pxref{Input Focus}). 786@var{frame} is omitted or @code{nil}, it defaults to the selected frame
787(@pxref{Input Focus}).
786 788
787The second argument, @var{minibuf}, says which frames to consider: 789The second argument, @var{minibuf}, says which frames to consider:
788 790