summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-08-16 14:07:19 +0200
committerJonas Bernoulli <jonas@bernoul.li>2025-08-16 14:07:19 +0200
commitdceea1aea1a2e29669f5f33c298398f451a8f816 (patch)
tree52e1cd9b40d663c144bbb19a28fdca7b93253e89
parentc59616ee1cb6cef5ef747860a21ba3799d66ddc8 (diff)
transient-get-value: Cosmetics
-rw-r--r--lisp/transient.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/transient.el b/lisp/transient.el
index 74e4182..4d60e3e 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -4070,8 +4070,8 @@ in `transient-set-value' and `transient-save-value' methods. Unlike
`unsavable' slot is non-nil."
(transient--with-emergency-exit :get-value
(mapcan (lambda (obj)
- (and (or (not (slot-exists-p obj 'unsavable))
- (not (oref obj unsavable)))
+ (and (not (and (slot-exists-p obj 'unsavable)
+ (oref obj unsavable)))
(transient--get-wrapped-value obj)))
(or transient--suffixes transient-current-suffixes))))