diff options
| author | Kim F. Storm | 2005-03-23 22:47:41 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-03-23 22:47:41 +0000 |
| commit | 8cab2784ae99631728128f6d2aed68cd216ba24a (patch) | |
| tree | 1fca2d4444a8d9d4e249ab05d1dbeb461d585ec5 | |
| parent | 1fe54d69016a108347f20d5946ae4c1c6ae8fde0 (diff) | |
| download | emacs-8cab2784ae99631728128f6d2aed68cd216ba24a.tar.gz emacs-8cab2784ae99631728128f6d2aed68cd216ba24a.zip | |
(Standard Faces): Other faces used in the fringe
implicitly inherits from the fringe face.
(Fringe Bitmaps): FACE in right-fringe and left-fringe display
properties implicitly inherits from fringe face.
(Customizing Bitmaps): Likewise for set-fringe-bitmap-face.
| -rw-r--r-- | lispref/display.texi | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lispref/display.texi b/lispref/display.texi index 2e490983b5b..74c6b3feb51 100644 --- a/lispref/display.texi +++ b/lispref/display.texi | |||
| @@ -1697,6 +1697,8 @@ font. (This works only on certain systems.) | |||
| 1697 | @kindex fringe @r{(face name)} | 1697 | @kindex fringe @r{(face name)} |
| 1698 | This face controls the default colors of window fringes, the thin areas on | 1698 | This face controls the default colors of window fringes, the thin areas on |
| 1699 | either side that are used to display continuation and truncation glyphs. | 1699 | either side that are used to display continuation and truncation glyphs. |
| 1700 | Other faces used to display bitmaps in the fringe implicitly inherits from | ||
| 1701 | this face. | ||
| 1700 | 1702 | ||
| 1701 | @item minibuffer-prompt | 1703 | @item minibuffer-prompt |
| 1702 | @kindex minibuffer-prompt @r{(face name)} | 1704 | @kindex minibuffer-prompt @r{(face name)} |
| @@ -2833,7 +2835,10 @@ the form @code{(left-fringe @var{bitmap} [@var{face}])} or | |||
| 2833 | @code{(right-fringe @var{bitmap} [@var{face}])} (@pxref{Display | 2835 | @code{(right-fringe @var{bitmap} [@var{face}])} (@pxref{Display |
| 2834 | Property}). Here, @var{bitmap} is a symbol identifying the bitmap | 2836 | Property}). Here, @var{bitmap} is a symbol identifying the bitmap |
| 2835 | you want, and @var{face} (which is optional) is the name of the face | 2837 | you want, and @var{face} (which is optional) is the name of the face |
| 2836 | whose colors should be used for displaying the bitmap. | 2838 | whose colors should be used for displaying the bitmap, instead of the |
| 2839 | default @code{fringe} face. When specified, @var{face} implicitly | ||
| 2840 | inherits from the @code{fringe} face, so normally @var{face} only | ||
| 2841 | specifies the foreground color for the bitmap. | ||
| 2837 | 2842 | ||
| 2838 | These are the symbols identify the standard fringe bitmaps. | 2843 | These are the symbols identify the standard fringe bitmaps. |
| 2839 | Evaluate @code{(require 'fringe)} to define them. Fringe bitmap | 2844 | Evaluate @code{(require 'fringe)} to define them. Fringe bitmap |
| @@ -2923,8 +2928,8 @@ This sets the face for the fringe bitmap @var{bitmap} to @var{face}. | |||
| 2923 | If @var{face} is @code{nil}, it selects the @code{fringe} face. The | 2928 | If @var{face} is @code{nil}, it selects the @code{fringe} face. The |
| 2924 | bitmap's face controls the color to draw it in. | 2929 | bitmap's face controls the color to draw it in. |
| 2925 | 2930 | ||
| 2926 | The face you use here should be derived from @code{fringe}, and should | 2931 | The @var{face} implicitly inherits from the @code{fringe} face, |
| 2927 | specify only the foreground color. | 2932 | so normally @var{face} should specifu only the foreground color. |
| 2928 | @end defun | 2933 | @end defun |
| 2929 | 2934 | ||
| 2930 | @node Overlay Arrow | 2935 | @node Overlay Arrow |