summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2024-04-20 14:52:02 +0300
committerEli Zaretskii <eliz@gnu.org>2024-04-20 14:52:02 +0300
commite3aae5fd385bd5512f614d2273a2d6d8e95a7ce6 (patch)
tree12ed8d664f11f52cd9bd28b428771c359fbc016e /doc
parentecb80e0e8aa6411b1e14334c2e4701208fdb238d (diff)
downloademacs-e3aae5fd385bd5512f614d2273a2d6d8e95a7ce6.tar.gz
; Document 'filtered-frame-list'
* doc/lispref/frames.texi (Finding All Frames): Document 'filtered-frame-list'.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/frames.texi12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index dc38f90ed74..edc080153d6 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -2804,6 +2804,18 @@ direction.
See also @code{next-window} and @code{previous-window}, in @ref{Cyclic
Window Ordering}.
+ Some Lisp programs need to find one or more frames that satisfy a
+given criteria. The function @code{filtered-frame-list} is provided for
+this purpose.
+
+@defun filtered-frame-list predicate
+This function returns the list of all the live frames which satisfy the
+specified @var{predicate}. The argument @var{predicate} must be a
+function of one argument, a frame to be tested against the filtering
+criteria, and should return non-@code{nil} if the frame satisfies the
+criteria.
+@end defun
+
@node Minibuffers and Frames
@section Minibuffers and Frames