Function: iswitchb-get-buffers-in-frames

iswitchb-get-buffers-in-frames is a byte-compiled function defined in iswitchb.el.gz.

Signature

(iswitchb-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 iswitchb-all-frames.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-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
`iswitchb-all-frames'."
  (let ((iswitchb-bufs-in-frame nil))
    (walk-windows 'iswitchb-get-bufname nil
		  (if current
		      nil
		    iswitchb-all-frames))
    iswitchb-bufs-in-frame))