diff options
| author | YAMAMOTO Mitsuharu | 2006-12-15 08:05:52 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-12-15 08:05:52 +0000 |
| commit | e71b26ec12766ba365aeef187a2d3e9ac4b61d9c (patch) | |
| tree | 706cddf60fb81bd8deecf7f7e9c9b24bb365091b /src | |
| parent | c10e5962973aaa2cedc49530e0bd241757910ea9 (diff) | |
| download | emacs-e71b26ec12766ba365aeef187a2d3e9ac4b61d9c.tar.gz emacs-e71b26ec12766ba365aeef187a2d3e9ac4b61d9c.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d90f342d797..12e78923f9e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,36 @@ | |||
| 1 | 2006-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * mac.c (wakeup_from_rne_enabled_p) [TARGET_API_MAC_CARBON]: New | ||
| 4 | variable. | ||
| 5 | (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE): New macros. | ||
| 6 | [!MAC_OSX] (select): Use them. | ||
| 7 | [MAC_OSX] (select_and_poll_event, sys_select): Likewise. | ||
| 8 | (mac_wakeup_from_rne) [TARGET_API_MAC_CARBON]: New function. | ||
| 9 | |||
| 10 | * macfns.c (mac_atsu_font_face_attributes) [USE_ATSUI]: Add extern. | ||
| 11 | (Fmac_atsu_font_face_attributes) [USE_ATSUI]: New function. | ||
| 12 | (syms_of_macfns) [USE_ATSUI]: Defsubr it. | ||
| 13 | |||
| 14 | * macselect.c [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Use | ||
| 15 | mac_wakeup_from_rne instead of mac_post_mouse_moved_event. | ||
| 16 | |||
| 17 | * macterm.c (mac_query_char_extents) [USE_ATSUI]: Don't call | ||
| 18 | ATSUGetGlyphBounds if not necessary. | ||
| 19 | (Vmac_atsu_font_table) [USE_ATSUI]: Remove Variable. | ||
| 20 | (syms_of_macterm) [USE_ATSUI]: Don't defvar it. | ||
| 21 | (fm_get_style_from_font, atsu_find_font_from_family_name) | ||
| 22 | (atsu_find_font_family_name, mac_atsu_font_face_attributes) | ||
| 23 | [USE_ATSUI]: New functions. | ||
| 24 | (init_font_name_table) [USE_ATSUI]: Use atsu_find_font_family_name. | ||
| 25 | (mac_load_query_font) [USE_ATSUI]: Use atsu_find_font_from_family_name. | ||
| 26 | Don't get metrics for Latin-1 right half characters. | ||
| 27 | (mac_load_query_font): Don't load font if space width is not positive. | ||
| 28 | [TARGET_API_MAC_CARBON] (mac_store_event_ref_as_apple_event): Use | ||
| 29 | mac_wakeup_from_rne instead of mac_post_mouse_moved_event. | ||
| 30 | (XTread_socket): Call SelectWindow when unfocused frame is clicked. | ||
| 31 | |||
| 32 | * macterm.h (mac_wakeup_from_rne) [TARGET_API_MAC_CARBON]: Add extern. | ||
| 33 | |||
| 1 | 2006-12-15 Kim F. Storm <storm@cua.dk> | 34 | 2006-12-15 Kim F. Storm <storm@cua.dk> |
| 2 | 35 | ||
| 3 | * keyboard.c (ignore_mouse_drag_p): New global var. | 36 | * keyboard.c (ignore_mouse_drag_p): New global var. |
| @@ -23,8 +56,8 @@ | |||
| 23 | (read_avail_input): Store pending user signal events. | 56 | (read_avail_input): Store pending user signal events. |
| 24 | (struct user_signal_info): New struct. | 57 | (struct user_signal_info): New struct. |
| 25 | (user_signals): New variable. | 58 | (user_signals): New variable. |
| 26 | (add_user_signal, store_user_signal_events find_user_signal_name): | 59 | (add_user_signal, store_user_signal_events) |
| 27 | New functions. | 60 | (find_user_signal_name): New functions. |
| 28 | (handle_user_signal): Move function from emacs.c. Don't store | 61 | (handle_user_signal): Move function from emacs.c. Don't store |
| 29 | USER_SIGNAL_EVENT here, but increment number of pending signals. | 62 | USER_SIGNAL_EVENT here, but increment number of pending signals. |
| 30 | 63 | ||