Function: ido-get-buffers-in-frames
ido-get-buffers-in-frames is a byte-compiled function defined in
ido.el.gz.
Signature
(ido-get-buffers-in-frames &optional CURRENT)
Documentation
Return the list of buffers that are visible in the current frame.
If optional argument CURRENT is given, restrict searching to the current
frame, rather than all frames, regardless of value of ido-all-frames.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-get-buffers-in-frames (&optional current)
"Return the list of buffers that are visible in the current frame.
If optional argument CURRENT is given, restrict searching to the current
frame, rather than all frames, regardless of value of `ido-all-frames'."
(let ((ido-bufs-in-frame nil))
(walk-windows 'ido-get-bufname nil
(if current
nil
ido-all-frames))
ido-bufs-in-frame))