diff options
| author | Kim F. Storm | 2004-04-26 22:39:49 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-04-26 22:39:49 +0000 |
| commit | 360fe9d22b7f98d38f6ddaeae1d9b2bd054d1950 (patch) | |
| tree | 25e8ba969428d7c5ce2ec971ea95b25ca1d8d975 | |
| parent | 7293ac29842d90126bc6d4a30f4da95094d44acc (diff) | |
| download | emacs-360fe9d22b7f98d38f6ddaeae1d9b2bd054d1950.tar.gz emacs-360fe9d22b7f98d38f6ddaeae1d9b2bd054d1950.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
3 files changed, 8 insertions, 1 deletions
| @@ -2003,7 +2003,7 @@ specifies the minimum line height in pixels. If necessary, the line | |||
| 2003 | height it increased by increasing the line's ascent. | 2003 | height it increased by increasing the line's ascent. |
| 2004 | 2004 | ||
| 2005 | If the line-height property value is a float, the minimum line height | 2005 | If the line-height property value is a float, the minimum line height |
| 2006 | is calculated by multiplying the current height of the display row by | 2006 | is calculated by multiplying the height of the current face font by |
| 2007 | the given value. | 2007 | the given value. |
| 2008 | 2008 | ||
| 2009 | If the line-height property value is t, the minimum line height is | 2009 | If the line-height property value is t, the minimum line height is |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cba61f06c91..a364d8e27d5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-04-27 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * image.el (insert-sliced-image): Use line-height instead of | ||
| 4 | line-spacing property on newline. | ||
| 5 | |||
| 1 | 2004-04-26 Lars Hansen <larsh@math.ku.dk> | 6 | 2004-04-26 Lars Hansen <larsh@math.ku.dk> |
| 2 | 7 | ||
| 3 | * desktop.el (desktop-buffer-misc-data-function): Rename to | 8 | * desktop.el (desktop-buffer-misc-data-function): Rename to |
diff --git a/src/ChangeLog b/src/ChangeLog index 6a070bd69e4..568cfa113c4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2004-04-27 Kim F. Storm <storm@cua.dk> | 1 | 2004-04-27 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * dispextern.h (struct it): New member use_default_face. | ||
| 4 | |||
| 3 | * xdisp.c (Qline_height): New variable. | 5 | * xdisp.c (Qline_height): New variable. |
| 4 | (syms_of_xdisp): Intern and staticpro it. | 6 | (syms_of_xdisp): Intern and staticpro it. |
| 5 | (append_space_for_newline): Partially undo 2004-04-25 change; | 7 | (append_space_for_newline): Partially undo 2004-04-25 change; |