]> git.eshelyaron.com Git - emacs.git/commitdiff
(frame-list): Clarify which frames are returned.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 4 May 2009 19:43:22 +0000 (19:43 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 4 May 2009 19:43:22 +0000 (19:43 +0000)
doc/lispref/frames.texi
src/frame.c

index 597df621106ff6a0d2f779d7452f9482fbcdef07..2805216557579d508e74454d0c986f467a51d701 100644 (file)
@@ -1178,11 +1178,11 @@ calls the function @code{delete-frame}.  @xref{Misc Events}.
 @cindex frames, scanning all
 
 @defun frame-list
-The function @code{frame-list} returns a list of all the frames that
-have not been deleted.  It is analogous to @code{buffer-list} for
-buffers, and includes frames on all terminals.  The list that you get is
-newly created, so modifying the list doesn't have any effect on the
-internals of Emacs.
+The function @code{frame-list} returns a list of all the live frames,
+i.e.@: those that have not been deleted.  It is analogous to
+@code{buffer-list} for buffers, and includes frames on all terminals.
+The list that you get is newly created, so modifying the list doesn't
+have any effect on the internals of Emacs.
 @end defun
 
 @defun visible-frame-list
index eb9088b5478394ce2f38bebd3b56ca7714b67438..de857af0273eb482c1a6aa8a4df2904790e5fbec 100644 (file)
@@ -1042,7 +1042,7 @@ Return WINDOW.  */)
 \f
 DEFUN ("frame-list", Fframe_list, Sframe_list,
        0, 0, 0,
-       doc: /* Return a list of all frames.  */)
+       doc: /* Return a list of all live frames.  */)
      ()
 {
   Lisp_Object frames;