aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2009-05-04 19:43:22 +0000
committerStefan Monnier2009-05-04 19:43:22 +0000
commitc15dfb2982fa8c98f7fa5c1cbfb27df649e62165 (patch)
treed218e496802e04a2e9bef6db1e308a714900c3cb
parent47f24290312daa7e0d694c21cfc979d66b58f221 (diff)
downloademacs-c15dfb2982fa8c98f7fa5c1cbfb27df649e62165.tar.gz
emacs-c15dfb2982fa8c98f7fa5c1cbfb27df649e62165.zip
(frame-list): Clarify which frames are returned.
-rw-r--r--doc/lispref/frames.texi10
-rw-r--r--src/frame.c2
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index 597df621106..28052165575 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -1178,11 +1178,11 @@ calls the function @code{delete-frame}. @xref{Misc Events}.
1178@cindex frames, scanning all 1178@cindex frames, scanning all
1179 1179
1180@defun frame-list 1180@defun frame-list
1181The function @code{frame-list} returns a list of all the frames that 1181The function @code{frame-list} returns a list of all the live frames,
1182have not been deleted. It is analogous to @code{buffer-list} for 1182i.e.@: those that have not been deleted. It is analogous to
1183buffers, and includes frames on all terminals. The list that you get is 1183@code{buffer-list} for buffers, and includes frames on all terminals.
1184newly created, so modifying the list doesn't have any effect on the 1184The list that you get is newly created, so modifying the list doesn't
1185internals of Emacs. 1185have any effect on the internals of Emacs.
1186@end defun 1186@end defun
1187 1187
1188@defun visible-frame-list 1188@defun visible-frame-list
diff --git a/src/frame.c b/src/frame.c
index eb9088b5478..de857af0273 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1042,7 +1042,7 @@ Return WINDOW. */)
1042 1042
1043DEFUN ("frame-list", Fframe_list, Sframe_list, 1043DEFUN ("frame-list", Fframe_list, Sframe_list,
1044 0, 0, 0, 1044 0, 0, 0,
1045 doc: /* Return a list of all frames. */) 1045 doc: /* Return a list of all live frames. */)
1046 () 1046 ()
1047{ 1047{
1048 Lisp_Object frames; 1048 Lisp_Object frames;