aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-05-04 13:45:52 +0000
committerKim F. Storm2004-05-04 13:45:52 +0000
commit6ab6679999a9edefc38be7c0866152cf076bfe17 (patch)
tree25c1df46d2e312cb507843402381279eea582d0f
parent0b3c2fe469050acc20439109361d2885f5453fc3 (diff)
downloademacs-6ab6679999a9edefc38be7c0866152cf076bfe17.tar.gz
emacs-6ab6679999a9edefc38be7c0866152cf076bfe17.zip
*** empty log message ***
-rw-r--r--etc/NEWS15
-rw-r--r--lisp/ChangeLog3
-rw-r--r--src/ChangeLog9
3 files changed, 21 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 9076e32452d..e29f7996532 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2045,8 +2045,9 @@ properties that control the height of the corresponding display row.
2045 2045
2046If the line-height property value is 0, the newline does not 2046If the line-height property value is 0, the newline does not
2047contribute to the height of the display row; instead the height of the 2047contribute to the height of the display row; instead the height of the
2048newline glyph is reduced. This can be used to tile small images or 2048newline glyph is reduced. Also, a line-spacing property on this
2049image slices without adding blank areas between the images. 2049newline is ignored. This can be used to tile small images or image
2050slices without adding blank areas between the images.
2050 2051
2051If the line-height property value is a positive integer, the value 2052If the line-height property value is a positive integer, the value
2052specifies the minimum line height in pixels. If necessary, the line 2053specifies the minimum line height in pixels. If necessary, the line
@@ -2065,13 +2066,15 @@ is used as additional pixels to insert after the display line; this
2065overrides the default frame line-spacing and any buffer local value of 2066overrides the default frame line-spacing and any buffer local value of
2066the line-spacing variable. 2067the line-spacing variable.
2067 2068
2068If the value is a negative integer, the absolute value is used as the
2069total height of the line, i.e. a varying number of pixels are
2070inserted after each line to make each line exactly that many pixels high.
2071
2072If the line-spacing property may be a float or cons, the line spacing 2069If the line-spacing property may be a float or cons, the line spacing
2073is calculated as specified above for the line-height property. 2070is calculated as specified above for the line-height property.
2074 2071
2072If the line-spacing value is a cons (total . SPACING) where SPACING is
2073any of the forms described above, the value of SPACING is used as the
2074total height of the line, i.e. a varying number of pixels are inserted
2075after each line to make each line exactly that many pixels high.
2076
2077
2075** The buffer local line-spacing variable may now have a float value, 2078** The buffer local line-spacing variable may now have a float value,
2076which is used as a height relative to the default frame line height. 2079which is used as a height relative to the default frame line height.
2077 2080
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8800933c2fe..cd709102911 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,9 @@
3 * ido.el (ido-read-internal): Fix call to read-file-name for edit. 3 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
4 Must expand directory for completion to work; and don't mess with 4 Must expand directory for completion to work; and don't mess with
5 process-environment. 5 process-environment.
6 (ido-read-file-name): If command has ido property, don't use ido
7 if value is ignore, or read as directory if value is dir.
8 Set ido ignore property for dired-do-rename command.
6 9
72004-05-04 Juanma Barranquero <lektu@terra.es> 102004-05-04 Juanma Barranquero <lektu@terra.es>
8 11
diff --git a/src/ChangeLog b/src/ChangeLog
index f3aa96bb1e5..fbce94f2ecd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12004-05-04 Kim F. Storm <storm@cua.dk>
2
3 * xdisp.c (Qtotal): New var.
4 (syms_of_xdisp): Intern and staticpro it.
5 (calc_line_height_property): New arg total. Set it if
6 line-spacing property has format (total . VALUE).
7 (x_produce_glyphs): Ignore line-spacing if line-height is 0.
8 Handle total line-spacing property.
9
12004-05-03 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 102004-05-03 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 11
3 * gtkutil.c (xg_update_scrollbar_pos): Call XClearWindow to clear 12 * gtkutil.c (xg_update_scrollbar_pos): Call XClearWindow to clear