diff options
| author | Stephen Leake | 2014-12-24 07:42:40 -0600 |
|---|---|---|
| committer | Stephen Leake | 2014-12-24 07:42:40 -0600 |
| commit | f3be0025481f15717198befe557208614e513e92 (patch) | |
| tree | c514ddea4da4b688c92d12f557f471c4edd1e990 /src/ChangeLog | |
| parent | b4161ac70e4206cc00263e0c1f765b4cf95dfd33 (diff) | |
| parent | 882370eaa4f7ad6a88396dfdc64f896c727f87f4 (diff) | |
| download | emacs-f3be0025481f15717198befe557208614e513e92.tar.gz emacs-f3be0025481f15717198befe557208614e513e92.zip | |
resolve ChangeLog merge conflict
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5bab023fd86..b90471e8dea 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,80 @@ | |||
| 1 | 2014-12-23 Didier Verna <didier@didierverna.net> (tiny change). | ||
| 2 | |||
| 3 | * nsselect.m (Fns_selection_owner_p): Return a Lisp boolean, not a | ||
| 4 | C one (Bug#19396). | ||
| 5 | |||
| 6 | 2014-12-22 Jan Djärv <jan.h.d@swipnet.se> | ||
| 7 | |||
| 8 | * xterm.c (x_bitmap_icon): Partly revert change from 2014-03-21 which | ||
| 9 | breaks icon setting for Gtk+ except for initial frame (Bug#19403). | ||
| 10 | |||
| 11 | 2014-12-22 Paul Eggert <eggert@cs.ucla.edu> | ||
| 12 | |||
| 13 | Use bool for boolean in xterm.c | ||
| 14 | * frame.h, nsterm.m, w32term.c, w32term.h, xterm.c: | ||
| 15 | (x_set_window_size, x_bitmap_icon): | ||
| 16 | * nsterm.m (ns_frame_raise_lower, x_new_font): | ||
| 17 | * termhooks.h (struct terminal.toggle_invisible_pointer_hook) | ||
| 18 | (struct terminal.frame_raise_lower_hook): | ||
| 19 | * w32term.c (w32_frame_raise_lower): | ||
| 20 | * xterm.c, xterm.h (x_text_icon): | ||
| 21 | * xterm.c (x_update_window_begin, x_update_window_end) | ||
| 22 | (x_update_end, x_after_update_window_line) | ||
| 23 | (x_set_glyph_string_gc, x_draw_glyph_string_background) | ||
| 24 | (x_draw_glyph_string_foreground) | ||
| 25 | (x_draw_composite_glyph_string_foreground) | ||
| 26 | (x_alloc_lighter_color, x_draw_relief_rect) | ||
| 27 | (x_draw_glyph_string_box, x_draw_image_relief) | ||
| 28 | (x_draw_image_glyph_string, x_draw_stretch_glyph_string) | ||
| 29 | (x_draw_underwave, x_draw_glyph_string, x_show_hourglass) | ||
| 30 | (x_hide_hourglass): | ||
| 31 | (XFillRectangle) [HAVE_GTK3]: | ||
| 32 | (XTtoggle_invisible_pointer, frame_highlight, frame_unhighlight) | ||
| 33 | (x_focus_changed, x_find_modifier_meanings, note_mouse_movement) | ||
| 34 | (XTmouse_position, xt_action_hook, xt_horizontal_action_hook) | ||
| 35 | (x_send_scroll_bar_event, xm_scroll_callback) | ||
| 36 | (xg_scroll_callback, xaw_jump_callback, xaw_scroll_callback) | ||
| 37 | (x_create_toolkit_scroll_bar) | ||
| 38 | (x_create_horizontal_toolkit_scroll_bar) | ||
| 39 | (x_set_toolkit_horizontal_scroll_bar_thumb, x_scroll_bar_create) | ||
| 40 | (x_scroll_bar_set_handle, XTset_vertical_scroll_bar) | ||
| 41 | (XTset_horizontal_scroll_bar, x_scroll_bar_expose) | ||
| 42 | (x_scroll_bar_handle_click, x_scroll_bar_note_movement) | ||
| 43 | (x_scroll_bar_report_motion) | ||
| 44 | (x_horizontal_scroll_bar_report_motion, x_net_wm_state) | ||
| 45 | (handle_one_xevent, XTread_socket, x_draw_bar_cursor) | ||
| 46 | (x_draw_window_cursor, x_clear_errors) | ||
| 47 | (x_trace_wire, x_new_font, x_set_offset, wm_supports) | ||
| 48 | (set_wm_state, x_set_sticky, get_current_wm_state) | ||
| 49 | (do_ewmh_fullscreen, x_handle_net_wm_state) | ||
| 50 | (x_check_expected_move, x_sync_with_move, x_wait_for_event) | ||
| 51 | (x_set_window_size_1, XTframe_raise_lower) | ||
| 52 | (x_make_frame_visible, x_iconify_frame) | ||
| 53 | (x_timeout_atimer_activated_flag, same_x_server, x_display_ok) | ||
| 54 | (x_term_init, x_process_timeouts, x_activate_timeout_atimer) | ||
| 55 | (x_delete_terminal, x_initialize, syms_of_xterm): | ||
| 56 | Use bool for boolean. | ||
| 57 | |||
| 58 | 2014-12-20 Paul Eggert <eggert@cs.ucla.edu> | ||
| 59 | |||
| 60 | * composite.h (struct composition.width): Now int | ||
| 61 | instead of unsigned short, as we prefer signed integers. | ||
| 62 | |||
| 63 | Let charset tick grow past USHRT_MAX | ||
| 64 | * charset.c, charset.h (charset_ordered_list_tick): | ||
| 65 | Now EMACS_UINT, not unsigned short. | ||
| 66 | * fontset.c (reorder_font_vector): Allow the tick to grow to the | ||
| 67 | maximum representable Emacs integer value before wrapping it around. | ||
| 68 | |||
| 69 | Simplify unexec file mode setting | ||
| 70 | * unexaix.c, unexcoff.c, unexelf.c, unexmacosx.c: | ||
| 71 | Don't include <sys/stat.h> when no longer needed. | ||
| 72 | (unexec): Create file with correct mode in the first place, | ||
| 73 | rather than overwriting the mode later and fiddling with the | ||
| 74 | global umask in the mean time. Avoid bogus usage like | ||
| 75 | 'umask (777)', which should have been 'umask (0777)'. | ||
| 76 | (mark_x): Remove. All callers removed. | ||
| 77 | |||
| 1 | 2014-12-19 Paul Eggert <eggert@cs.ucla.edu> | 78 | 2014-12-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 79 | ||
| 3 | Minor cleanups for Lisp objects and symbols | 80 | Minor cleanups for Lisp objects and symbols |
| @@ -14,6 +91,7 @@ | |||
| 14 | * nsmenu.m (syms_of_nsmenu): | 91 | * nsmenu.m (syms_of_nsmenu): |
| 15 | * nsselect.m (syms_of_nsselect): | 92 | * nsselect.m (syms_of_nsselect): |
| 16 | Prefer DEFSYM to defining by hand. | 93 | Prefer DEFSYM to defining by hand. |
| 94 | * buffer.c (syms_of_buffer): Omit unneeded staticpros. | ||
| 17 | * data.c: Fix too-long line. | 95 | * data.c: Fix too-long line. |
| 18 | * lisp.h (DECLARE_GDB_SYM): New macro. | 96 | * lisp.h (DECLARE_GDB_SYM): New macro. |
| 19 | (DEFINE_GDB_SYMBOL_BEGIN): Use it. | 97 | (DEFINE_GDB_SYMBOL_BEGIN): Use it. |