1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(minibuffer-prompt): Doc fix.

This commit is contained in:
Juri Linkov 2005-08-23 21:01:24 +00:00
parent 3c509ffb5e
commit 9ed779e8f5
2 changed files with 14 additions and 7 deletions

View 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.

View 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)