Function: edebug-current-windows
edebug-current-windows is a byte-compiled function defined in
edebug.el.gz.
Signature
(edebug-current-windows WHICH-WINDOWS)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-current-windows (which-windows)
;; Get either a full window configuration or some window information.
(if (listp which-windows)
(mapcar (lambda (window)
(if (window-live-p window)
(list window
(window-buffer window)
(window-point window)
(window-start window)
(window-hscroll window))))
which-windows)
(current-window-configuration)))