From 4817a67bd7458999fcdccdd3e535e41426c341ba Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Thu, 5 Dec 2024 21:02:39 +0100 Subject: [PATCH] Work around Bug#73862 fallout --- lisp/simple.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 0c4bb1ebe52..94649d62e8d 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -10174,7 +10174,8 @@ back on `completion-list-insert-choice-function' when nil." (define-derived-mode completion-list-mode special-mode "Completions" "Major mode for buffers showing lists of possible completions." (when completions-highlight-face (cursor-face-highlight-mode 1)) - (face-remap-add-relative 'header-line 'completions-heading)) + (face-remap-add-relative 'header-line-inactive 'completions-heading) + (face-remap-add-relative 'header-line-active 'completions-heading)) (defun switch-to-completions () "Select the completion list window." -- 2.39.5