>From 37292a9cbe5ac7c19ee6ef273fca977105487b37 Mon Sep 17 00:00:00 2001 From: Raffaele Ricciardi Date: Mon, 20 Jul 2015 00:11:03 +0200 Subject: [PATCH] * minibuffer.el: Make 'minibuffer-message' use the 'minibuffer-prompt' face. --- lisp/minibuffer.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 411416b..ac1b660 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -703,6 +703,7 @@ If ARGS are provided, then pass MESSAGE through `format'." (copy-sequence message) (concat " [" message "]"))) (when args (setq message (apply 'format message args))) + (setq message (propertize message 'face 'minibuffer-prompt)) (let ((ol (make-overlay (point-max) (point-max) nil t t)) ;; A quit during sit-for normally only interrupts the sit-for, ;; but since minibuffer-message is used at the end of a command, -- 2.1.4