diff options
| author | Dmitry Antipov | 2013-09-11 12:56:33 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-09-11 12:56:33 +0400 |
| commit | 742516e02048d3bbfba4e6e13dd19afa097bbd3b (patch) | |
| tree | a040e49b687d4d1cb4c69aaa5ba4795c65dec807 /src/ChangeLog | |
| parent | 73f82c7e8eb6a009248f4ea6360b2182d06f55e2 (diff) | |
| download | emacs-742516e02048d3bbfba4e6e13dd19afa097bbd3b.tar.gz emacs-742516e02048d3bbfba4e6e13dd19afa097bbd3b.zip | |
Ifdef away frame tool bar code when it is not really used.
* frame.h (struct frame) [HAVE_WINDOW_SYSTEM && !USE_GTK && !HAVE_NS]:
Move tool_bar_window, desired_tool_bar_string, current_tool_bar_string
and minimize_tool_bar_window_p under the above.
(fset_current_tool_bar_string, fset_desired_tool_bar_string)
(fset_tool_bar_window): Likewise.
* dispnew.c (clear_current_matrices, clear_desired_matrices)
(adjust_frame_glyphs_for_window_redisplay, free_glyphs, update_frame)
(change_frame_size_1):
* window.c (window_from_coordinates, Frecenter): Adjust users.
* window.h (WINDOW_TOOL_BAR_P): Define to zero when frame tool bar
code is not really used.
* xdisp.c (build_desired_tool_bar_string, display_tool_bar_line)
(tool_bar_lines_needed, MAX_FRAME_TOOL_BAR_HEIGHT, tool_bar_item_info)
(get_tool_bar_item, handle_tool_bar_click, note_tool_bar_highlight)
[!USE_GTK && !HAVE_NS]: Define as such.
(Ftool_bar_lines_needed, redisplay_tool_bar, show_mouse_face)
(note_mouse_highlight, expose_frame):
* xfns.c (x_set_tool_bar_lines):
* xterm.c (handle_one_xevent): Adjust users.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 21cb47eeeaa..83e5dbcdaff 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2013-09-11 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | Ifdef away frame tool bar code when it is not really used. | ||
| 4 | * frame.h (struct frame) [HAVE_WINDOW_SYSTEM && !USE_GTK && !HAVE_NS]: | ||
| 5 | Move tool_bar_window, desired_tool_bar_string, current_tool_bar_string | ||
| 6 | and minimize_tool_bar_window_p under the above. | ||
| 7 | (fset_current_tool_bar_string, fset_desired_tool_bar_string) | ||
| 8 | (fset_tool_bar_window): Likewise. | ||
| 9 | * dispnew.c (clear_current_matrices, clear_desired_matrices) | ||
| 10 | (adjust_frame_glyphs_for_window_redisplay, free_glyphs, update_frame) | ||
| 11 | (change_frame_size_1): | ||
| 12 | * window.c (window_from_coordinates, Frecenter): Adjust users. | ||
| 13 | * window.h (WINDOW_TOOL_BAR_P): Define to zero when frame tool bar | ||
| 14 | code is not really used. | ||
| 15 | * xdisp.c (build_desired_tool_bar_string, display_tool_bar_line) | ||
| 16 | (tool_bar_lines_needed, MAX_FRAME_TOOL_BAR_HEIGHT, tool_bar_item_info) | ||
| 17 | (get_tool_bar_item, handle_tool_bar_click, note_tool_bar_highlight) | ||
| 18 | [!USE_GTK && !HAVE_NS]: Define as such. | ||
| 19 | (Ftool_bar_lines_needed, redisplay_tool_bar, show_mouse_face) | ||
| 20 | (note_mouse_highlight, expose_frame): | ||
| 21 | * xfns.c (x_set_tool_bar_lines): | ||
| 22 | * xterm.c (handle_one_xevent): Adjust users. | ||
| 23 | |||
| 1 | 2013-09-11 Paul Eggert <eggert@cs.ucla.edu> | 24 | 2013-09-11 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 25 | ||
| 3 | Fix corruption with multiple emacsclient -t instances (Bug#15222). | 26 | Fix corruption with multiple emacsclient -t instances (Bug#15222). |