aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-24 16:39:31 +0000
committerRichard M. Stallman2001-12-24 16:39:31 +0000
commit31cf46d33df0ab4dd0281429cdf6365ebf0c30d3 (patch)
treee3a703926b07c3be6bcf0b1d2952274b26d2b9aa
parent78263139246753c3b49a8dbf7a8ed18cf342e808 (diff)
downloademacs-31cf46d33df0ab4dd0281429cdf6365ebf0c30d3.tar.gz
emacs-31cf46d33df0ab4dd0281429cdf6365ebf0c30d3.zip
(minibuffer-prompt): New face.
(minibuffer-prompt-properties): Add `face' property.
-rw-r--r--lisp/faces.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index d60d30a46f6..10f27f8b8e1 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1767,6 +1767,14 @@ created."
1767 :group 'basic-faces) 1767 :group 'basic-faces)
1768 1768
1769 1769
1770(defface minibuffer-prompt '((t ()))
1771 "Face for minibuffer prompts."
1772 :version "21.3"
1773 :group 'basic-faces)
1774
1775(setq minibuffer-prompt-properties
1776 (append minibuffer-prompt-properties (list 'face 'minibuffer-prompt)))
1777
1770(defface region 1778(defface region
1771 '((((type tty) (class color)) 1779 '((((type tty) (class color))
1772 (:background "blue" :foreground "white")) 1780 (:background "blue" :foreground "white"))