Function: hywconfig-get-ring

hywconfig-get-ring is a byte-compiled function defined in hywconfig.el.

Signature

(hywconfig-get-ring)

Documentation

Return the selected frame's window configuration ring.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywconfig.el
(defun hywconfig-get-ring ()
  "Return the selected frame's window configuration ring."
  (let* ((frame (selected-frame))
	 (ring (frame-parameter frame 'hywconfig-ring)))
    (unless ring
      (set-frame-parameter frame 'hywconfig-ring (setq ring (make-ring hywconfig-ring-max))))
    ring))