emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/transient 4ef8229feb 082/366: transient--buffer-name: N


From: Jonas Bernoulli
Subject: [elpa] externals/transient 4ef8229feb 082/366: transient--buffer-name: New variable
Date: Tue, 25 Jan 2022 18:54:29 -0500 (EST)

branch: externals/transient
commit 4ef8229feb8a12c9198de2c61593903099c9611a
Author: Alex Kost <alezost@gmail.com>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    transient--buffer-name: New variable
    
    See #45.
---
 lisp/transient.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lisp/transient.el b/lisp/transient.el
index 2f018589a3..8b1d90e7fb 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -1019,6 +1019,9 @@ variable instead.")
 
 (defvar transient--stack nil)
 
+(defvar transient--buffer-name " *transient*"
+  "Name of the transient buffer.")
+
 (defvar transient--window nil
   "The window used to display the transient popup.")
 
@@ -2419,7 +2422,7 @@ have a history of their own.")
 (defun transient--show ()
   (transient--timer-cancel)
   (setq transient--showp t)
-  (let ((buf (get-buffer-create " *transient*"))
+  (let ((buf (get-buffer-create transient--buffer-name))
         (focus nil))
     (unless (window-live-p transient--window)
       (setq transient--window



reply via email to

[Prev in Thread] Current Thread [Next in Thread]