branch: externals/transient
commit dd4e541f95c6227241cc08c2bd2054c885233baf
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
transient--parse-suffix: Use consistent plist order
At least for the most common properties.
---
lisp/transient.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lisp/transient.el b/lisp/transient.el
index b7965e4688..4939c8ed5e 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -1037,7 +1037,9 @@ example, sets a variable, use `transient-define-infix'
instead.
spec))))))
(defun transient--parse-suffix (prefix spec)
- (let (level class args)
+ (let ((args (list :key nil :command nil :description nil))
+ (level nil)
+ (class nil))
(cl-symbol-macrolet
((car (car spec))
(pop (pop spec)))