diff options
| author | Martin Rudalics | 2014-08-04 18:47:27 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2014-08-04 18:47:27 +0200 |
| commit | 4a75c94d14f7a3c50014d1cc12ee519eb955c1ed (patch) | |
| tree | 73a26f58dc3568e35872b33dcd88aa411ef9c56a /src/ChangeLog | |
| parent | 44a651f0f2e1668bdbbacca3bf5d405c34e67ff2 (diff) | |
| download | emacs-4a75c94d14f7a3c50014d1cc12ee519eb955c1ed.tar.gz emacs-4a75c94d14f7a3c50014d1cc12ee519eb955c1ed.zip | |
Fix scroll bar handling for non-toolkit builds.
* frame.h (FRAME_HAS_HORIZONTAL_SCROLL_BARS): Condition
correctly according to toolkit used.
* frame.c (make_initial_frame, make_terminal_frame)
(x_set_horizontal_scroll_bars, x_set_scroll_bar_height)
(Vdefault_frame_horizontal_scroll_bars): Correctly condition
assignments according to presence of toolkit scrollbars.
* window.h (WINDOW_HAS_HORIZONTAL_SCROLL_BAR): Condition
correctly according to toolkit used.
* window.c (set_window_scroll_bars): Set horizontal scroll bar
only if toolkit supports it.
* w32term.c (w32_redeem_scroll_bar): Always redeem scroll bar if
present.
* xterm.c (x_scroll_bar_create): Initialize horizontal slot for
non-toolkit builds.
(XTredeem_scroll_bar): Always redeem scroll bar if present.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ab0ba1b6758..e936863ce1d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2014-08-04 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * frame.h (FRAME_HAS_HORIZONTAL_SCROLL_BARS): Condition | ||
| 4 | correctly according to toolkit used. | ||
| 5 | * frame.c (make_initial_frame, make_terminal_frame) | ||
| 6 | (x_set_horizontal_scroll_bars, x_set_scroll_bar_height) | ||
| 7 | (Vdefault_frame_horizontal_scroll_bars): Correctly condition | ||
| 8 | assignments according to presence of toolkit scrollbars. | ||
| 9 | * window.h (WINDOW_HAS_HORIZONTAL_SCROLL_BAR): Condition | ||
| 10 | correctly according to toolkit used. | ||
| 11 | * window.c (set_window_scroll_bars): Set horizontal scroll bar | ||
| 12 | only if toolkit supports it. | ||
| 13 | * w32term.c (w32_redeem_scroll_bar): Always redeem scroll bar if | ||
| 14 | present. | ||
| 15 | * xterm.c (x_scroll_bar_create): Initialize horizontal slot for | ||
| 16 | non-toolkit builds. | ||
| 17 | (XTredeem_scroll_bar): Always redeem scroll bar if present. | ||
| 18 | |||
| 1 | 2014-08-04 Dmitry Antipov <dmantipov@yandex.ru> | 19 | 2014-08-04 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 20 | ||
| 3 | * keyboard.c (safe_run_hook_funcall): Avoid consing around | 21 | * keyboard.c (safe_run_hook_funcall): Avoid consing around |