diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-06-05 17:46:58 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-06-05 17:46:58 +0200 |
| commit | 4d79d8d661c14463992d0adca4b530e94297297f (patch) | |
| tree | 15cd9b1966f22f2166bfb7fdcff17a813bb8cd86 /lisp | |
| parent | 23ec451280fa1641090a5abcbf75b4b99ec61852 (diff) | |
transient--init-suffix: Fix previous commit
Diffstat (limited to 'lisp')
| -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 a56774c..2e83f94 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -2512,7 +2512,7 @@ value. Otherwise return CHILDREN as is.") (plist-get args :level) (and proto (oref proto level)) transient--default-child-level)) - (args (plist-put (copy-list plist) :level level))) + (args (plist-put (copy-sequence args) :level level))) (when (transient--use-level-p level) (let ((obj (if (child-of-class-p class 'transient-information) (apply class :parent parent args) |
