branch: externals/transient
commit f486f03cb985475f3b94eaee5d375fdbade7f725
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
transient--wrap-command: Fix precedence of suffix/group advice slots
---
lisp/transient.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/transient.el b/lisp/transient.el
index ed1c565a7c..c3941b5ed8 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -2731,8 +2731,8 @@ value. Otherwise return CHILDREN as is.")
(if-let* ((obj (transient-suffix-object cmd))
(grp (oref obj parent))
(adv (or (oref obj advice)
- (oref grp advice)
(oref obj advice*)
+ (oref grp advice)
(oref grp advice*))))
(apply adv fn args)
(apply fn args)))