]> git.eshelyaron.com Git - emacs.git/commitdiff
(minibuffer-prompt): Doc fix.
authorJuri Linkov <juri@jurta.org>
Tue, 23 Aug 2005 21:01:24 +0000 (21:01 +0000)
committerJuri Linkov <juri@jurta.org>
Tue, 23 Aug 2005 21:01:24 +0000 (21:01 +0000)
lisp/ChangeLog
lisp/faces.el

index b92c234700cb63afaef228dd2fc99acca9287dfb..9202542eec8126840b33126656d5b9b8a0499797 100644 (file)
@@ -1,3 +1,7 @@
+2005-08-23  Juri Linkov  <juri@jurta.org>
+
+       * faces.el (minibuffer-prompt): Doc fix.
+
 2005-08-23  Juanma Barranquero  <lekktu@gmail.com>
 
        * progmodes/xscheme.el: Trivial changes to silence warnings.
index 3335dec8bc74b1ae90f2ea57a36247a287df0a66..d02e40a9b43e222757d30bebd6ac869a8d7bfbcd 100644 (file)
@@ -1951,13 +1951,16 @@ created."
   :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)