diff options
| author | Eli Zaretskii | 2013-07-06 13:41:38 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-07-06 13:41:38 +0300 |
| commit | fdda022055a1dabf52c2f0aa80ed8599e4db3e10 (patch) | |
| tree | 245901dcda86c61d071e4c36f6f43f020b5585ea /src/ChangeLog | |
| parent | 88c45e34b6626e4deab5e9a139323bf1e4b1c9b3 (diff) | |
| download | emacs-fdda022055a1dabf52c2f0aa80ed8599e4db3e10.tar.gz emacs-fdda022055a1dabf52c2f0aa80ed8599e4db3e10.zip | |
Fix bug #14771 with scroll-step = 1 and non-nil line-spacing.
src/xdisp.c (default_line_pixel_height): New function.
(pos_visible_p, move_it_vertically_backward, try_scrolling)
(try_cursor_movement, redisplay_window, try_window)
(try_window_id): Use it instead of FRAME_LINE_HEIGHT. (Bug#14771)
src/window.c (window_scroll_pixel_based): use
default_line_pixel_height.
src/dispextern.h (default_line_pixel_height): Add prototype.
src/frame.c (x_set_line_spacing): Accept a float value for
line-spacing parameter, per the documentation.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 83d66ee6de6..9bf1840baac 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,18 @@ | |||
| 1 | 2013-07-06 Eli Zaretskii <eliz@gnu.org> | 1 | 2013-07-06 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * xdisp.c (default_line_pixel_height): New function. | ||
| 4 | (pos_visible_p, move_it_vertically_backward, try_scrolling) | ||
| 5 | (try_cursor_movement, redisplay_window, try_window) | ||
| 6 | (try_window_id): Use it instead of FRAME_LINE_HEIGHT. (Bug#14771) | ||
| 7 | |||
| 8 | * window.c (window_scroll_pixel_based): use | ||
| 9 | default_line_pixel_height. | ||
| 10 | |||
| 11 | * dispextern.h (default_line_pixel_height): Add prototype. | ||
| 12 | |||
| 13 | * frame.c (x_set_line_spacing): Accept a float value for | ||
| 14 | line-spacing parameter, per the documentation. | ||
| 15 | |||
| 3 | * data.c (Fmultibyte_string_p): Doc fix. | 16 | * data.c (Fmultibyte_string_p): Doc fix. |
| 4 | 17 | ||
| 5 | 2013-07-05 Paul Eggert <eggert@cs.ucla.edu> | 18 | 2013-07-05 Paul Eggert <eggert@cs.ucla.edu> |