Function: edebug-toggle-save-all-windows
edebug-toggle-save-all-windows is an interactive and byte-compiled
function defined in edebug.el.gz.
Signature
(edebug-toggle-save-all-windows)
Documentation
Toggle the saving and restoring of all windows.
Also, each time you toggle it on, the inside and outside window configurations become the same as the current configuration.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-toggle-save-all-windows ()
"Toggle the saving and restoring of all windows.
Also, each time you toggle it on, the inside and outside window
configurations become the same as the current configuration."
(interactive)
(setq edebug-save-windows (not edebug-save-windows))
(if edebug-save-windows
(setq edebug-inside-windows
(setq edebug-outside-windows
(edebug-current-windows
edebug-save-windows))))
(message "Window saving is %s for all windows."
(if edebug-save-windows "on" "off")))