# HG changeset patch # User Stefan Monnier # Date 1241466202 0 # Node ID cfd0f4bd9e6e56b9aab5b3af02892d1c89f78d7a # Parent 7fb21f372caef661b9eb7865bd9af10e3e3c1a45 (frame-list): Clarify which frames are returned. diff -r 7fb21f372cae -r cfd0f4bd9e6e doc/lispref/frames.texi --- a/doc/lispref/frames.texi Mon May 04 19:33:10 2009 +0000 +++ b/doc/lispref/frames.texi Mon May 04 19:43:22 2009 +0000 @@ -1178,11 +1178,11 @@ @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 diff -r 7fb21f372cae -r cfd0f4bd9e6e src/frame.c --- a/src/frame.c Mon May 04 19:33:10 2009 +0000 +++ b/src/frame.c Mon May 04 19:43:22 2009 +0000 @@ -1042,7 +1042,7 @@ 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;