diff options
author | Pavel Janík <Pavel@Janik.cz> | 2002-04-09 09:25:08 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2002-04-09 09:25:08 +0000 |
commit | 49850a4803a8d68142e3f15cf683a612a546dd83 (patch) | |
tree | d2bfccdf57514d009d77ee246b1bb64212cd8715 /lisp/isearch.el | |
parent | d0daba2c63ee8ad8b2db5352360ba5d83503f161 (diff) | |
download | emacs-49850a4803a8d68142e3f15cf683a612a546dd83.tar.gz |
(isearch-message-prefix): Use minibuffer-prompt face for prompt.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 502285a357b..7d2a4540c64 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1600,7 +1600,7 @@ If there is no completion possible, say so and continue searching." (concat " [" current-input-method-title "]: ") ": ") ))) - (concat (upcase (substring m 0 1)) (substring m 1)))) + (propertize (concat (upcase (substring m 0 1)) (substring m 1)) 'face 'minibuffer-prompt))) (defun isearch-message-suffix (&optional c-q-hack ellipsis) |