branch: externals/transient
commit 8b1f8dcc51b7aa8387498184399d0173cdc2c10f
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
transient--minibuffer-depth: Must always be a number
Fixes #184.
---
lisp/transient.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/transient.el b/lisp/transient.el
index 1557af94f5..66ac8b8306 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -1356,7 +1356,7 @@ variable instead.")
(defvar transient--stack nil)
-(defvar transient--minibuffer-depth nil)
+(defvar transient--minibuffer-depth 0)
(defvar transient--buffer-name " *transient*"
"Name of the transient buffer.")
@@ -2170,7 +2170,7 @@ value. Otherwise return CHILDREN as is."
(setq transient--exitp nil)
(setq transient--helpp nil)
(setq transient--editp nil)
- (setq transient--minibuffer-depth nil)
+ (setq transient--minibuffer-depth 0)
(run-hooks 'transient-exit-hook)
(when resume
(transient--stack-pop))))