diff options
| author | Kim F. Storm | 2004-05-04 13:45:52 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-05-04 13:45:52 +0000 |
| commit | 6ab6679999a9edefc38be7c0866152cf076bfe17 (patch) | |
| tree | 25c1df46d2e312cb507843402381279eea582d0f | |
| parent | 0b3c2fe469050acc20439109361d2885f5453fc3 (diff) | |
| download | emacs-6ab6679999a9edefc38be7c0866152cf076bfe17.tar.gz emacs-6ab6679999a9edefc38be7c0866152cf076bfe17.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 15 | ||||
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 9 |
3 files changed, 21 insertions, 6 deletions
| @@ -2045,8 +2045,9 @@ properties that control the height of the corresponding display row. | |||
| 2045 | 2045 | ||
| 2046 | If the line-height property value is 0, the newline does not | 2046 | If the line-height property value is 0, the newline does not |
| 2047 | contribute to the height of the display row; instead the height of the | 2047 | contribute to the height of the display row; instead the height of the |
| 2048 | newline glyph is reduced. This can be used to tile small images or | 2048 | newline glyph is reduced. Also, a line-spacing property on this |
| 2049 | image slices without adding blank areas between the images. | 2049 | newline is ignored. This can be used to tile small images or image |
| 2050 | slices without adding blank areas between the images. | ||
| 2050 | 2051 | ||
| 2051 | If the line-height property value is a positive integer, the value | 2052 | If the line-height property value is a positive integer, the value |
| 2052 | specifies the minimum line height in pixels. If necessary, the line | 2053 | specifies 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 | |||
| 2065 | overrides the default frame line-spacing and any buffer local value of | 2066 | overrides the default frame line-spacing and any buffer local value of |
| 2066 | the line-spacing variable. | 2067 | the line-spacing variable. |
| 2067 | 2068 | ||
| 2068 | If the value is a negative integer, the absolute value is used as the | ||
| 2069 | total height of the line, i.e. a varying number of pixels are | ||
| 2070 | inserted after each line to make each line exactly that many pixels high. | ||
| 2071 | |||
| 2072 | If the line-spacing property may be a float or cons, the line spacing | 2069 | If the line-spacing property may be a float or cons, the line spacing |
| 2073 | is calculated as specified above for the line-height property. | 2070 | is calculated as specified above for the line-height property. |
| 2074 | 2071 | ||
| 2072 | If the line-spacing value is a cons (total . SPACING) where SPACING is | ||
| 2073 | any of the forms described above, the value of SPACING is used as the | ||
| 2074 | total height of the line, i.e. a varying number of pixels are inserted | ||
| 2075 | after 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, |
| 2076 | which is used as a height relative to the default frame line height. | 2079 | which 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 | ||
| 7 | 2004-05-04 Juanma Barranquero <lektu@terra.es> | 10 | 2004-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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-05-03 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 10 | 2004-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 |