aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorKim F. Storm2004-04-25 00:42:22 +0000
committerKim F. Storm2004-04-25 00:42:22 +0000
commite5847e56000711d975acdbfe58bcbf8552f9446f (patch)
tree5ea39b978487e3efab7df854242b6398f91de1fe /etc
parent9ff3aa31d3094ac89aac91ef9234ebfc2a11ac93 (diff)
downloademacs-e5847e56000711d975acdbfe58bcbf8552f9446f.tar.gz
emacs-e5847e56000711d975acdbfe58bcbf8552f9446f.zip
New line-spacing property on newlines.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS20
1 files changed, 17 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e28ba30d3f4..f6d7e136989 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1988,9 +1988,23 @@ specify image slice (X Y WIDTH HEIGHT).
1988*** New function insert-sliced-image inserts a given image as a 1988*** New function insert-sliced-image inserts a given image as a
1989specified number of evenly sized slices (rows x columns). 1989specified number of evenly sized slices (rows x columns).
1990 1990
1991*** Trailing newlines no longer contribute to the height of a display 1991** New line-spacing property for newline characters
1992row; instead the height of the newline glyph is reduced. This allows 1992
1993sliced images to use a height less than the default line height. 1993A newline may now have a line-spacing text property, that may be used
1994to control the height of the corresponding display row.
1995
1996If the property value is t, the newline does not contribute to the
1997height of the display row; instead the height of the newline glyph is
1998reduced. This can be used to tile small images or image slices
1999without adding blank areas between the images.
2000
2001If the property value is an integer, the value is used as additional
2002space to put after the display line; this overrides the default frame
2003line-spacing and any buffer local value of the line-spacing variable.
2004
2005If the property value is a float, the value is multiplied by the
2006current height of the display row to determine the additional space
2007to put after the display line.
1994 2008
1995** Enhancements to stretch display properties 2009** Enhancements to stretch display properties
1996 2010