diff options
| author | Miles Bader | 2008-04-18 02:56:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-04-18 02:56:45 +0000 |
| commit | d02fe47dd3be7310d1bfd6e802d1fac2ea5f5e9d (patch) | |
| tree | 9ba3090ea2e4c57322ad5104dc910eedffb40ae4 /src/ChangeLog | |
| parent | dc6ee347e3e4fe96397ef913d2ffe4901cc0c1a8 (diff) | |
| parent | bcb96719b37029024876fca1f65eab69d32aa6d8 (diff) | |
| download | emacs-d02fe47dd3be7310d1bfd6e802d1fac2ea5f5e9d.tar.gz emacs-d02fe47dd3be7310d1bfd6e802d1fac2ea5f5e9d.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1112
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0b849d99c43..cf9bbe2d8bc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,162 @@ | |||
| 1 | 2008-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * Makefile.in (MAC_OBJ): Add mactoolbox.o. | ||
| 4 | (mactoolbox.o): New target. | ||
| 5 | |||
| 6 | * mac.c [MAC_OSX] (select_and_poll_event, sys_select): | ||
| 7 | Use mac_run_loop_run_once instead of CFRunLoopRunInMode. | ||
| 8 | |||
| 9 | * macfns.c (x_set_background_color, mac_window, x_create_tip_frame): | ||
| 10 | Use mac_set_frame_window_background instead of XSetWindowBackground. | ||
| 11 | (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: | ||
| 12 | Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible. | ||
| 13 | (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title | ||
| 14 | instead of SetWindowTitleWithCFString. | ||
| 15 | (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT. | ||
| 16 | Move function to mactoolbox.c. | ||
| 17 | (mac_update_title_bar) [TARGET_API_MAC_CARBON]: | ||
| 18 | Use mac_set_window_modified instead of SetWindowModified. | ||
| 19 | Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon. | ||
| 20 | (mac_window, x_create_tip_frame): Use mac_create_frame_window. | ||
| 21 | (Fx_focus_frame): Use mac_front_non_floating_window instead of | ||
| 22 | FrontNonFloatingWindow. Use mac_activate_window instead of | ||
| 23 | ActivateWindow. Use mac_active_non_floating_window instead of | ||
| 24 | ActiveNonFloatingWindow. | ||
| 25 | (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]: | ||
| 26 | Use mac_show_hourglass and mac_hide_hourglass. | ||
| 27 | (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse | ||
| 28 | instead of GetGlobalMouse. | ||
| 29 | (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window | ||
| 30 | instead of MoveWindow/SizeWindow/ShowWindow, respectively. | ||
| 31 | Use mac_bring_window_to_front instead of BringToFront. | ||
| 32 | (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to | ||
| 33 | mactoolbox.c. | ||
| 34 | (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to | ||
| 35 | mac_file_dialog in mactoolbox.c. Use mac_file_dialog. | ||
| 36 | (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to | ||
| 37 | mactoolbox.c. | ||
| 38 | |||
| 39 | * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h. | ||
| 40 | (XtPointer): Move typedef from macmenu.c. | ||
| 41 | (enum button_type): Move enum from macmenu.c. | ||
| 42 | (widget_value): Move typedef from macmenu.c. | ||
| 43 | (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID) | ||
| 44 | (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN) | ||
| 45 | (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH) | ||
| 46 | (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE) | ||
| 47 | (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH) | ||
| 48 | (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE) | ||
| 49 | (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN) | ||
| 50 | (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c. | ||
| 51 | (Selection): Move typedef from macselect.c. | ||
| 52 | (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from | ||
| 53 | macterm.c. | ||
| 54 | (mac_set_window_title, mac_set_window_modified, mac_is_window_visible) | ||
| 55 | (mac_is_window_collapsed, mac_bring_window_to_front) | ||
| 56 | (mac_send_window_behind, mac_hide_window, mac_show_window) | ||
| 57 | (mac_collapse_window, mac_front_non_floating_window) | ||
| 58 | (mac_active_non_floating_window, mac_activate_window) | ||
| 59 | (mac_move_window_structure, mac_move_window, mac_size_window) | ||
| 60 | (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines. | ||
| 61 | |||
| 62 | * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c. | ||
| 63 | (enum mac_menu_kind): Move enum to mactoolbox.c. | ||
| 64 | (min_menu_id): Move variable to mactoolbox.c. | ||
| 65 | (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise. | ||
| 66 | (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c. | ||
| 67 | (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P) | ||
| 68 | (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID) | ||
| 69 | [TARGET_API_MAC_CARBON]: Likewise. | ||
| 70 | (XtPointer): Move typedef to macgui.h. | ||
| 71 | (enum button_type): Move enum to macgui.h. | ||
| 72 | (widget_value): Move typedef to macgui.h. | ||
| 73 | (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN) | ||
| 74 | (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH) | ||
| 75 | (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE) | ||
| 76 | (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH) | ||
| 77 | (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE) | ||
| 78 | (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN) | ||
| 79 | (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h. | ||
| 80 | (popup_activated_flag): Make variable non-static. | ||
| 81 | (x_activate_menubar, install_menu_quit_handler, pop_down_menu) | ||
| 82 | (add_menu_item, fill_menu, dispose_menus): | ||
| 83 | Move functions to mactoolbox.c. | ||
| 84 | (restore_show_help_function, menu_target_item_handler) | ||
| 85 | (install_menu_target_item_handler, mac_handle_dialog_event) | ||
| 86 | (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog) | ||
| 87 | [TARGET_API_MAC_CARBON]: Likewise. | ||
| 88 | (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise. | ||
| 89 | (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise. | ||
| 90 | (find_and_call_menu_selection, name_is_separator): Make function | ||
| 91 | non-static. | ||
| 92 | (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern | ||
| 93 | to mactoolbox.c. | ||
| 94 | (set_frame_menubar): Don't call install_menu_quit_handler. | ||
| 95 | (menu_item_selection): New variable. | ||
| 96 | (mac_menu_show): Use create_and_show_popup_menu. | ||
| 97 | (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return | ||
| 98 | selection but set variable menu_item_selection. All uses changed. | ||
| 99 | (mac_fill_menubar): Rename from fill_menubar. All uses changed. | ||
| 100 | Call install_menu_quit_handler. Move to mactoolbox.c. | ||
| 101 | |||
| 102 | * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h. | ||
| 103 | (Selection): Move typedef to macgui.h. | ||
| 104 | (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype) | ||
| 105 | (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id): | ||
| 106 | Make variables non-static. | ||
| 107 | (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise. | ||
| 108 | (mac_handle_apple_event, cleanup_all_suspended_apple_events): | ||
| 109 | Make functions non-static. | ||
| 110 | (Vmac_service_selection) [MAC_OSX]: Likewise. | ||
| 111 | (mac_get_selection_from_symbol, get_flavor_type_from_symbol) | ||
| 112 | (mac_valid_selection_target_p, mac_clear_selection) | ||
| 113 | (mac_get_selection_ownership_info, mac_valid_selection_value_p) | ||
| 114 | (mac_put_selection_value, mac_selection_has_target_p) | ||
| 115 | (mac_get_selection_value, mac_get_selection_target_list) | ||
| 116 | (init_apple_event_handler, install_drag_handler, remove_drag_handler): | ||
| 117 | Move functions to mactoolbox.c. | ||
| 118 | (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]: | ||
| 119 | Likewise. | ||
| 120 | (copy_scrap_flavor_data, mac_handle_service_event) | ||
| 121 | (install_service_handler) [MAC_OSX]: Likewise. | ||
| 122 | (syms_of_macselect) <Vmac_dnd_known_types>: | ||
| 123 | Use mac_dnd_default_known_types. | ||
| 124 | |||
| 125 | * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): | ||
| 126 | Move to mactoolbox.c. | ||
| 127 | (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15. | ||
| 128 | (Fx_selection_owner_p): Add EXFUN. | ||
| 129 | (install_window_handler, remove_window_handler, XSetWindowBackground): | ||
| 130 | Remove externs. | ||
| 131 | (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise. | ||
| 132 | (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise. | ||
| 133 | (x_raise_frame, x_lower_frame, mac_alert_sound_play) | ||
| 134 | (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse) | ||
| 135 | (mac_convert_frame_point_to_global, mac_set_frame_window_background) | ||
| 136 | (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush) | ||
| 137 | (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip) | ||
| 138 | (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar) | ||
| 139 | (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar) | ||
| 140 | (create_and_show_popup_menu, mac_get_selection_from_symbol) | ||
| 141 | (mac_valid_selection_target_p, mac_clear_selection) | ||
| 142 | (mac_get_selection_ownership_info, mac_valid_selection_value_p) | ||
| 143 | (mac_put_selection_value, mac_selection_has_target_p) | ||
| 144 | (mac_get_selection_value, mac_get_selection_target_list): Add externs. | ||
| 145 | (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass) | ||
| 146 | (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog) | ||
| 147 | (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise. | ||
| 148 | (mac_run_loop_run_once) [MAC_OSX]: Likewise. | ||
| 149 | (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise. | ||
| 150 | (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise. | ||
| 151 | (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise. | ||
| 152 | (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise. | ||
| 153 | |||
| 154 | * mactoolbox.c: New file. | ||
| 155 | |||
| 156 | 2008-03-31 Jason Rumney <jasonr@gnu.org> | ||
| 157 | |||
| 158 | * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned. | ||
| 159 | |||
| 1 | 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca> | 160 | 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 161 | ||
| 3 | * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only | 162 | * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only |