diff options
| author | YAMAMOTO Mitsuharu | 2005-04-16 03:07:58 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2005-04-16 03:07:58 +0000 |
| commit | f3cf04d3970cd450be56d77da9c2f32c119a3809 (patch) | |
| tree | 8830be89365696880baf17478a8a61e61e88ce60 /src | |
| parent | a5e700caf2a2f93ed6d39af407d67d8244a6b2a7 (diff) | |
| download | emacs-f3cf04d3970cd450be56d77da9c2f32c119a3809.tar.gz emacs-f3cf04d3970cd450be56d77da9c2f32c119a3809.zip | |
(mac.o): Depend on charset.h and coding.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 39 | ||||
| -rw-r--r-- | src/Makefile.in | 3 |
2 files changed, 41 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4d09df63be9..b8ebd3f8ba2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,42 @@ | |||
| 1 | 2005-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * Makefile.in (mac.o): Depend on charset.h and coding.h. | ||
| 4 | |||
| 5 | * mac.c: Include charset.h and coding.h. | ||
| 6 | [TARGET_API_MAC_CARBON] (Qutf_8): Remove extern. | ||
| 7 | [TARGET_API_MAC_CARBON] (cfstring_create_with_string): New | ||
| 8 | function. | ||
| 9 | [TARGET_API_MAC_CARBON] (Fmac_get_preference): Use it. | ||
| 10 | |||
| 11 | * macfns.c [TARGET_API_MAC_CARBON] (Fx_file_dialog): Likewise. | ||
| 12 | |||
| 13 | * image.c [MAC_OSX] (image_load_quartz2d): Likewise. | ||
| 14 | |||
| 15 | * macterm.c (x_autoselect_window_p): Remove variable. | ||
| 16 | (last_window): New variable. | ||
| 17 | (XTreassert_line_highlight, x_change_line_highlight): Remove | ||
| 18 | declarations. | ||
| 19 | (mac_focus_changed, x_detect_focus_change): New functions and | ||
| 20 | declarations. | ||
| 21 | (XTextExtents16, front_emacs_window): Remove function. | ||
| 22 | (mac_focus_frame): New function. | ||
| 23 | (XTmouse_position, do_menu_choice, do_zoom_window, XTread_socket) | ||
| 24 | (mac_check_for_quit_char): Use it instead of front_emacs_window. | ||
| 25 | (x_scroll_bar_report_motion): Obtain window from control owner. | ||
| 26 | (x_make_frame_invisible): Set window manager size hint. | ||
| 27 | (do_mouse_moved): Remove function. | ||
| 28 | (XTread_socket): Move its contents here. Generate select-window | ||
| 29 | event on mouse movement if needed. Use x_detect_focus_change on | ||
| 30 | activate/deactivate events. Don't deiconify frame or invalidate | ||
| 31 | window rectangle when dnd items are dropped. Don't | ||
| 32 | activate/deactivate root control. | ||
| 33 | (frame_highlight, frame_unhighlight): Activate/deactivate root | ||
| 34 | control here. | ||
| 35 | (syms_of_macterm): Delete DEFVAR_BOOL for x_autoselect_window_p. | ||
| 36 | |||
| 37 | * macterm.h (cfstring_create_with_string) [TARGET_API_MAC_CARBON]: | ||
| 38 | New extern. | ||
| 39 | |||
| 1 | 2005-04-15 Luc Teirlinck <teirllm@auburn.edu> | 40 | 2005-04-15 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 41 | ||
| 3 | * Makefile.in: Define new macro TOOLTIP_SUPPORT. | 42 | * Makefile.in: Define new macro TOOLTIP_SUPPORT. |
diff --git a/src/Makefile.in b/src/Makefile.in index f0745ec39a0..543fbceee2a 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1234,7 +1234,8 @@ abbrev.o buffer.o callint.o cmds.o dispnew.o editfns.o fileio.o frame.o \ | |||
| 1234 | fontset.o indent.o insdel.o keyboard.o macros.o minibuf.o msdos.o process.o \ | 1234 | fontset.o indent.o insdel.o keyboard.o macros.o minibuf.o msdos.o process.o \ |
| 1235 | scroll.o sysdep.o term.o widget.o window.o xdisp.o xfaces.o xfns.o xmenu.o \ | 1235 | scroll.o sysdep.o term.o widget.o window.o xdisp.o xfaces.o xfns.o xmenu.o \ |
| 1236 | xterm.o xselect.o sound.o: macgui.h | 1236 | xterm.o xselect.o sound.o: macgui.h |
| 1237 | mac.o: mac.c process.h sysselect.h blockinput.h atimer.h systime.h $(config_h) | 1237 | mac.o: mac.c process.h sysselect.h blockinput.h atimer.h systime.h charset.h \ |
| 1238 | coding.h $(config_h) | ||
| 1238 | macfns.o: macfns.c charset.h macterm.h macgui.h frame.h window.h buffer.h \ | 1239 | macfns.o: macfns.c charset.h macterm.h macgui.h frame.h window.h buffer.h \ |
| 1239 | dispextern.h macgui.h fontset.h $(INTERVAL_SRC) keyboard.h blockinput.h \ | 1240 | dispextern.h macgui.h fontset.h $(INTERVAL_SRC) keyboard.h blockinput.h \ |
| 1240 | atimer.h systime.h epaths.h termhooks.h coding.h systime.h $(config_h) | 1241 | atimer.h systime.h epaths.h termhooks.h coding.h systime.h $(config_h) |