diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/display.texi | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 5face4138e0..60e14b6b85b 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -2130,10 +2130,32 @@ Background color, a string. The value can be a system-defined color | |||
| 2130 | name, or a hexadecimal color specification. @xref{Color Names}. | 2130 | name, or a hexadecimal color specification. @xref{Color Names}. |
| 2131 | 2131 | ||
| 2132 | @item :underline | 2132 | @item :underline |
| 2133 | Whether or not characters should be underlined, and in what color. If | 2133 | Whether or not characters should be underlined, and in what |
| 2134 | the value is @code{t}, underlining uses the foreground color of the | 2134 | color. Here are the possible values of the @code{:underline} |
| 2135 | face. If the value is a string, underlining uses that color. The | 2135 | attribute, and what they mean: |
| 2136 | value @code{nil} means do not underline. | 2136 | |
| 2137 | @table @asis | ||
| 2138 | @item @code{nil} | ||
| 2139 | Don't underline. | ||
| 2140 | |||
| 2141 | @item @code{t} | ||
| 2142 | Underline with the foreground color of the face. | ||
| 2143 | |||
| 2144 | @item @var{color} | ||
| 2145 | Underline in color @var{color}. | ||
| 2146 | |||
| 2147 | @item @code{(:color @var{color} :style @var{style})} | ||
| 2148 | If @var{color} is a string, underline in it. | ||
| 2149 | If @var{color} is @code{foreground-color}, underline with the | ||
| 2150 | foreground color of the face. | ||
| 2151 | |||
| 2152 | If @var{style} is @code{wave} underline with a wave. | ||
| 2153 | If @var{style} is @code{line} underline with a line. | ||
| 2154 | |||
| 2155 | If the attribute @code{:color} is omited, underline with the | ||
| 2156 | foreground color of the face. | ||
| 2157 | If the attribute @code{:style} is omited, underline with a line. | ||
| 2158 | @end table | ||
| 2137 | 2159 | ||
| 2138 | @item :overline | 2160 | @item :overline |
| 2139 | Whether or not characters should be overlined, and in what color. | 2161 | Whether or not characters should be overlined, and in what color. |