branch: externals/transient
commit f960acdf745482d33473da0efe43a1c613e57fbb
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    transient-format-description: Fix regression
    
    This direct use of `transient--prefix's `value' slot
    was overlooked in [1: b4edb633].
    
    1: 2025-08-16 b4edb633488fc251df0883b69b1eb350cb2e94ec
       transient-get-value: Replace with three functions
---
 lisp/transient.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/transient.el b/lisp/transient.el
index f4ccd0df60..f5ed899354 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -4738,7 +4738,7 @@ and its value is returned to the caller."
 
 (cl-defmethod transient-format-description ((obj transient-value-preset))
   (pcase-let* (((eieio description key set) obj)
-               ((eieio value) transient--prefix)
+               (value (transient--get-extended-value))
                (active (seq-set-equal-p set value)))
     (format
      "%s %s"

Reply via email to