diff options
author | Jonas Bernoulli <jonas@bernoul.li> | 2023-02-09 23:53:33 +0100 |
---|---|---|
committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-02-09 23:53:33 +0100 |
commit | 56960a6558b65ce9643684c09203709f015e1812 (patch) | |
tree | 036f03a4c19e92bb066743258acb662596dedd16 | |
parent | 68a6b364d1cdc8894c25df555786b870973e07cb (diff) | |
download | emacs-56960a6558b65ce9643684c09203709f015e1812.tar.gz emacs-56960a6558b65ce9643684c09203709f015e1812.tar.bz2 emacs-56960a6558b65ce9643684c09203709f015e1812.zip |
Update to Transient v0.3.7-205-gb8ad0da
-rw-r--r-- | lisp/transient.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/transient.el b/lisp/transient.el index 9858bff03a8..73ea6fa940e 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -2162,7 +2162,7 @@ value. Otherwise return CHILDREN as is." (funcall fn) (transient--suspend-override (bound-and-true-p edebug-active)) (funcall fn) ; Already unwind protected. - (cond ((eq this-command '(top-level abort-recursive-edit)) + (cond ((memq this-command '(top-level abort-recursive-edit)) (setq transient--exitp t) (transient--post-exit) (transient--delete-window)) |