From: Eshel Yaron Date: Thu, 5 Dec 2024 20:02:39 +0000 (+0100) Subject: Work around Bug#73862 fallout X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4817a67bd7458999fcdccdd3e535e41426c341ba;p=emacs.git Work around Bug#73862 fallout --- 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."