From 617d12dc3ea93d1f17d753af7ce9c938a11bf858 Mon Sep 17 00:00:00 2001 From: Jared Finder Date: Fri, 8 Dec 2023 18:31:12 -0800 Subject: [PATCH] Hypothetical fix -- downgrade to warnings. --- window.el | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/window.el b/window.el index c3b941f..5c9f1c4 100644 --- a/window.el +++ b/window.el @@ -45,30 +45,30 @@ (copy-tree '(window-parameters (no-other-window . t)))) (let ((bottom-windows ; Extremely transient windows - (list "\\*Apropos\\*" - "\\*Async Shell Command\\*" - "\\*Backtrace\\*" - "\\*Buffer List\\*" - "\\*Checkdoc Status\\*" - "\\*Completions\\*" - "\\*Compile-Log\\*" - "\\*Deletions\\*" - "\\*Help\\*" - "\\*Local Variables\\*" - "\\*Message\\*" - "\\*Messages\\*" - "\\*Multiple Choice Help\\*" - "\\*Occur\\*" - "\\*RE-Builder\\*" - "\\*Shell Command Output\\*" - "\\*Warnings\\*" - "\\*compilation\\*" - "\\*grep\\*" - "\\*vc-git : " - "\\*xref\\*")) + (list "^\\*Apropos\\*$" + "^\\*Async Shell Command\\*$" + "^\\*Backtrace\\*$" + "^\\*Buffer List\\*$" + "^\\*Checkdoc Status\\*$" + "^\\*Completions\\*$" + "^\\*Compile-Log\\*$" + "^\\*Deletions\\*$" + "^\\*Help\\*$" + "^\\*Local Variables\\*$" + "^\\*Message\\*$" + "^\\*Messages\\*$" + "^\\*Multiple Choice Help\\*$" + "^\\*Occur\\*$" + "^\\*RE-Builder\\*$" + "^\\*Shell Command Output\\*$" + "^\\*Warnings\\*$" + "^\\*compilation\\*$" + "^\\*grep\\*$" + "^\\*vc-git : " + "^\\*xref\\*$")) (left-windows ; VC prompts - (list "\\*Open Recent - More\\*" - "\\*vc-dir\\*" + (list "^\\*Open Recent - More\\*$" + "^\\*vc-dir\\*$" '(derived-mode . dired-mode)))) (setf display-buffer-alist (append (mapcar (lambda (buffer)