diff options
Diffstat (limited to 'lisp/faces.el')
| -rw-r--r-- | lisp/faces.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index cc6b5d0f8df..936e0a132a4 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1910,6 +1910,9 @@ created." | |||
| 1910 | 1910 | ||
| 1911 | 1911 | ||
| 1912 | (defface minibuffer-prompt '((((background dark)) :foreground "cyan") | 1912 | (defface minibuffer-prompt '((((background dark)) :foreground "cyan") |
| 1913 | ;; Don't use blue because many users of | ||
| 1914 | ;; the MS-DOS port customize their | ||
| 1915 | ;; foreground color to be blue. | ||
| 1913 | (((type pc)) :foreground "magenta") | 1916 | (((type pc)) :foreground "magenta") |
| 1914 | (t :foreground "dark blue")) | 1917 | (t :foreground "dark blue")) |
| 1915 | "Face for minibuffer prompts." | 1918 | "Face for minibuffer prompts." |
| @@ -2077,6 +2080,8 @@ Note: Other faces cannot inherit from the cursor face." | |||
| 2077 | :group 'basic-faces) | 2080 | :group 'basic-faces) |
| 2078 | 2081 | ||
| 2079 | (defface escape-glyph '((((background dark)) :foreground "cyan") | 2082 | (defface escape-glyph '((((background dark)) :foreground "cyan") |
| 2083 | ;; See the comment in minibuffer-prompt for | ||
| 2084 | ;; the reason not to use blue on MS-DOS. | ||
| 2080 | (((type pc)) :foreground "magenta") | 2085 | (((type pc)) :foreground "magenta") |
| 2081 | (t :foreground "blue")) | 2086 | (t :foreground "blue")) |
| 2082 | "Face for characters displayed as ^-sequences or \-sequences." | 2087 | "Face for characters displayed as ^-sequences or \-sequences." |