diff options
| author | Stefan Monnier | 2009-05-04 19:43:22 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-05-04 19:43:22 +0000 |
| commit | c15dfb2982fa8c98f7fa5c1cbfb27df649e62165 (patch) | |
| tree | d218e496802e04a2e9bef6db1e308a714900c3cb | |
| parent | 47f24290312daa7e0d694c21cfc979d66b58f221 (diff) | |
| download | emacs-c15dfb2982fa8c98f7fa5c1cbfb27df649e62165.tar.gz emacs-c15dfb2982fa8c98f7fa5c1cbfb27df649e62165.zip | |
(frame-list): Clarify which frames are returned.
| -rw-r--r-- | doc/lispref/frames.texi | 10 | ||||
| -rw-r--r-- | src/frame.c | 2 |
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 |
| 1181 | The function @code{frame-list} returns a list of all the frames that | 1181 | The function @code{frame-list} returns a list of all the live frames, |
| 1182 | have not been deleted. It is analogous to @code{buffer-list} for | 1182 | i.e.@: those that have not been deleted. It is analogous to |
| 1183 | buffers, and includes frames on all terminals. The list that you get is | 1183 | @code{buffer-list} for buffers, and includes frames on all terminals. |
| 1184 | newly created, so modifying the list doesn't have any effect on the | 1184 | The list that you get is newly created, so modifying the list doesn't |
| 1185 | internals of Emacs. | 1185 | have 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 | ||
| 1043 | DEFUN ("frame-list", Fframe_list, Sframe_list, | 1043 | DEFUN ("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; |