Function: hywconfig-set-window-configuration
hywconfig-set-window-configuration is a byte-compiled function defined
in hywconfig.el.
Signature
(hywconfig-set-window-configuration WCONFIG)
Documentation
Return window configureation WCONFIG within the selected frame.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywconfig.el
(defun hywconfig-set-window-configuration (wconfig)
"Return window configureation WCONFIG within the selected frame."
(when (window-configuration-p wconfig)
(condition-case nil
(progn (set-window-configuration wconfig) t)
(error (message "(HyWconfig): Invalid window configuration, `%s'" wconfig)
(beep)
(sit-for 2)
nil))))