From 378a01e16808ce319138141bdc0779d96e17f8bf Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Tue, 19 Jan 2021 06:05:53 +0100 Subject: [PATCH] Actually make the calc trail window dedicated * lisp/calc/calc.el (calc-trail-display): Actually make the trail window dedicated (bug#45928). --- lisp/calc/calc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index d684c7ba97f..ec09abb34c4 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -2144,7 +2144,7 @@ the United States." (let ((w (split-window nil (/ (* (window-width) 2) 3) t))) (set-window-buffer w calc-trail-buffer) (and calc-make-windows-dedicated - (set-window-dedicated-p nil t)))) + (set-window-dedicated-p w t)))) (calc-wrapper (setq overlay-arrow-string calc-trail-overlay overlay-arrow-position calc-trail-pointer) -- 2.39.5