Function: hywconfig-named-get
hywconfig-named-get is a byte-compiled function defined in
hywconfig.el.
Signature
(hywconfig-named-get NAME)
Documentation
Return the selected frame's window configuration with NAME.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywconfig.el
;;; ************************************************************************
;;; Private functions
;;; ************************************************************************
(defun hywconfig-named-get (name)
"Return the selected frame's window configuration with NAME."
(with-suppressed-warnings ((obsolete lax-plist-get)) ;; Obsolete since 29.1, use plist-get
(lax-plist-get (hywconfig-named-get-entries) name)))