From e0fce2ee20c3c4031b6a7406c9b2c05192ae8cde Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Thu, 25 Apr 2024 20:39:56 +0300 Subject: [PATCH] * lisp/tab-line.el: Fix tab-line-buffers in window-persistent-parameters. Replace '(tab-line-buffers . writable)' with '(tab-line-buffers . t)' in 'window-persistent-parameters' (bug#69993). (cherry picked from commit 32ed3d26793753124d344901a6401eecd9225cd1) --- lisp/tab-line.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/tab-line.el b/lisp/tab-line.el index 84dd20a6307..896e1c802f7 100644 --- a/lisp/tab-line.el +++ b/lisp/tab-line.el @@ -540,7 +540,7 @@ And newly displayed buffers are added to the end of the tab line." (set-window-parameter nil 'tab-line-buffers new-buffers) new-buffers)) -(add-to-list 'window-persistent-parameters '(tab-line-buffers . writable)) +(add-to-list 'window-persistent-parameters '(tab-line-buffers . t)) (defcustom tab-line-tab-name-format-function #'tab-line-tab-name-format-default -- 2.39.5