Function: bs--restore-window-config
bs--restore-window-config is a byte-compiled function defined in
bs.el.gz.
Signature
(bs--restore-window-config)
Documentation
Restore window configuration on the current frame.
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--restore-window-config ()
"Restore window configuration on the current frame."
(when bs--window-config-coming-from
(let ((frame (selected-frame)))
(unwind-protect
(set-window-configuration bs--window-config-coming-from)
(select-frame frame)))
(setq bs--window-config-coming-from nil)))