changeset 65084:87a66a9a9328

(minibuffer-prompt): Doc fix.
author Juri Linkov <juri@jurta.org>
date Tue, 23 Aug 2005 21:00:46 +0000
parents c84845bcb591
children 8524188a3b88
files lisp/faces.el
diffstat 1 files changed, 10 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/faces.el	Tue Aug 23 20:05:50 2005 +0000
+++ b/lisp/faces.el	Tue Aug 23 21:00:46 2005 +0000
@@ -1951,13 +1951,16 @@
   :group 'basic-faces)
 
 
-(defface minibuffer-prompt '((((background dark)) :foreground "cyan")
-			     ;; Don't use blue because many users of
-			     ;; the MS-DOS port customize their
-			     ;; foreground color to be blue.
-			     (((type pc)) :foreground "magenta")
-			     (t :foreground "dark blue"))
-  "Face for minibuffer prompts."
+(defface minibuffer-prompt
+  '((((background dark)) :foreground "cyan")
+    ;; Don't use blue because many users of the MS-DOS port customize
+    ;; their foreground color to be blue.
+    (((type pc)) :foreground "magenta")
+    (t :foreground "dark blue"))
+  "Face for minibuffer prompts.
+By default, Emacs automatically adds this face to the value of
+`minibuffer-prompt-properties', which is a list of text properties
+used to display the prompt text."
   :version "22.1"
   :group 'basic-faces)