Function: edebug-window-list
edebug-window-list is a byte-compiled function defined in
edebug.el.gz.
Signature
(edebug-window-list)
Documentation
Return a list of windows, in order of next-window.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-window-list ()
"Return a list of windows, in order of `next-window'."
;; This doesn't work for epoch.
(let (window-list)
(walk-windows (lambda (w) (push w window-list)))
(nreverse window-list)))