Function: hywconfig-delete-pop
hywconfig-delete-pop is an autoloaded, interactive and byte-compiled
function defined in hywconfig.el.
Signature
(hywconfig-delete-pop)
Documentation
Replace the selected frame's window configuration with the most recently saved.
Then delete this new configuration from the ring.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywconfig.el
;;; Window configuration ring management (like text kill ring).
;;;###autoload
(defun hywconfig-delete-pop ()
"Replace the selected frame's window configuration with the most recently saved.
Then delete this new configuration from the ring."
(interactive)
(let ((ring (hywconfig-get-ring)))
(if (ring-empty-p ring)
(error "(hywconfig-delete-pop): Window configuration save ring is empty")
(if (ring-empty-p ring)
(message "Window configuration save ring is now empty.")
(hywconfig-set-window-configuration (ring-ref ring 0))
(ring-remove ring 0)))))