aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii2019-10-14 17:35:42 +0300
committerEli Zaretskii2019-10-14 17:35:42 +0300
commit668137acfbcb71108748195078d11ac3433f1f3f (patch)
tree08ccfc2e69fd083beed4d068d1d632c08a8a32f9 /doc
parented29d0239a03b6eee418e438edee6b2df7612606 (diff)
downloademacs-668137acfbcb71108748195078d11ac3433f1f3f.tar.gz
emacs-668137acfbcb71108748195078d11ac3433f1f3f.zip
; Minor copyedits of recent documentation changes
* etc/NEWS: * doc/lispref/display.texi (Face Attributes): Fix documentation of the ':extend' face attribute.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/display.texi18
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 1678d32db0a..f35b11f8493 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -2484,14 +2484,16 @@ attributes from faces earlier in the list override those from later
2484faces. 2484faces.
2485 2485
2486@item :extend 2486@item :extend
2487Whether or not this face will be extended until the end of the window. 2487Whether or not this face will be extended beyond end of line and will
2488The value should be @code{t} to extend until end of the window using 2488affect the display of the empty space between the end of line and the
2489this face or @code{nil} fill the space between the end of the line and 2489edge of the window. The value should be @code{t} to display the empty
2490the end of the window with the default face. When a face is conformed 2490space between end of line and edge of the window using this face, or
2491by merging multiple other faces; only those with @code{:extend t} will 2491@code{nil} to not use this face for the space between the end of the
2492be merged to conform a new face to extend until end of window. By 2492line and the edge of the window. When Emacs merges several faces for
2493default only @code{region} and @code{hl-line} have this attribute set 2493displaying the empty space beyond end of line, only those faces with
2494to @code{t}. 2494@code{:extend} non-@code{nil} will be merged. By default, only
2495@code{region} and @code{hl-line} faces have this attribute set to
2496@code{t}.
2495 2497
2496@end table 2498@end table
2497 2499