Variable: edebug-save-windows
edebug-save-windows is a customizable variable defined in
edebug.el.gz.
Value
t
Documentation
If non-nil, Edebug saves and restores the window configuration.
That takes some time, so if your program does not care what happens to the window configurations, it is better to set this variable to nil.
If the value is a list, only the listed windows are saved and restored.
edebug-toggle-save-windows may be used to change this variable.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defcustom edebug-save-windows t
"If non-nil, Edebug saves and restores the window configuration.
That takes some time, so if your program does not care what happens to
the window configurations, it is better to set this variable to nil.
If the value is a list, only the listed windows are saved and
restored.
`edebug-toggle-save-windows' may be used to change this variable."
:type '(choice boolean (repeat string)))