diff options
| author | YAMAMOTO Mitsuharu | 2005-03-04 11:16:35 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2005-03-04 11:16:35 +0000 |
| commit | ba025f6dd119f781c62a72839da66817ec6ddf9d (patch) | |
| tree | 63576715085ba0acba1d7759a8f7ef476d96484f /src | |
| parent | 1376ed186732b6f6c0ca9548e006447851f8e819 (diff) | |
| download | emacs-ba025f6dd119f781c62a72839da66817ec6ddf9d.tar.gz emacs-ba025f6dd119f781c62a72839da66817ec6ddf9d.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1e8aed6a54f..1702092aa1d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,58 @@ | |||
| 1 | 2005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * emacs.c (main): Change `#ifdef HAVE_CARBON' to `#if | ||
| 4 | defined (MAC_OSX) && defined (HAVE_CARBON)'. | ||
| 5 | |||
| 6 | * image.c [!MAC_OSX && TARGET_API_MAC_CARBON]: Include | ||
| 7 | QuickTime.h. | ||
| 8 | |||
| 9 | * mac.c [!MAC_OSX && HAVE_CARBON]: Include Carbon.h. | ||
| 10 | [!MAC_OSX] (select) [TARGET_API_MAC_CARBON]: Use ReceiveNextEvent. | ||
| 11 | (posix_pathname_to_fsspec, fsspec_to_posix_pathname): New | ||
| 12 | functions. | ||
| 13 | (mac_clear_font_name_table): Move extern to macterm.h. | ||
| 14 | |||
| 15 | * macfns.c (install_window_handler): Move extern to macterm.h. | ||
| 16 | (Fx_file_dialog): Check STRINGP (default_filename) to see it is | ||
| 17 | valid. Don't check !NILP (dir) because it is already checked with | ||
| 18 | CHECK_STRING. | ||
| 19 | (Fx_file_dialog) [!MAC_OSX]: Use FSSpec instead of FSRef for | ||
| 20 | specifying the default location and obtaining the selected | ||
| 21 | filename. | ||
| 22 | |||
| 23 | * macgui.h [!MAC_OSX && HAVE_CARBON]: Include Carbon.h. | ||
| 24 | |||
| 25 | * macmenu.h [TARGET_API_MAC_CARBON]: Don't include headers that | ||
| 26 | are included via Carbon.h. | ||
| 27 | |||
| 28 | * macterm.c [TARGET_API_MAC_CARBON && !MAC_OSX]: Define | ||
| 29 | USE_CARBON_EVENTS to 1. | ||
| 30 | [__MRC__ && TARGET_API_MAC_CARBON]: Don't declare `qd'. | ||
| 31 | (x_free_frame_resources): Call remove_window_handler for | ||
| 32 | non-tooltip windows. | ||
| 33 | [TARGET_API_MAC_CARBON]: Don't include headers that are included | ||
| 34 | via Carbon.h. | ||
| 35 | [TARGET_API_MAC_CARBON] (mac_do_track_dragUPP) | ||
| 36 | (mac_do_receive_dragUPP): New variables. | ||
| 37 | (mac_handle_service_event, init_service_handler): Put declarations | ||
| 38 | and definitions in #ifdef MAC_OSX. | ||
| 39 | (install_window_handler) [TARGET_API_MAC_CARBON]: Create UPPs for | ||
| 40 | drag-and-drop handler functions and register them. | ||
| 41 | (remove_window_handler): New function. | ||
| 42 | (do_ae_open_documents, mac_do_receive_drag) [!MAC_OSX]: Use | ||
| 43 | fsspec_to_posix_pathname. | ||
| 44 | (main): Change #if !TARGET_API_MAC_CARBON to #ifdef MAC_OS8. | ||
| 45 | (XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM. | ||
| 46 | [MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]: Set | ||
| 47 | default cursors. | ||
| 48 | (mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX] : Don't call | ||
| 49 | init_service_handler or init_quit_char_handler. | ||
| 50 | (mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess. | ||
| 51 | |||
| 52 | * macterm.h (install_window_handler, remove_window_handler) | ||
| 53 | (posix_pathname_to_fsspec, fsspec_to_posix_pathname) | ||
| 54 | (mac_clear_font_name_table): New externs. | ||
| 55 | |||
| 1 | 2005-03-03 Thien-Thi Nguyen <ttn@gnu.org> | 56 | 2005-03-03 Thien-Thi Nguyen <ttn@gnu.org> |
| 2 | 57 | ||
| 3 | * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined. | 58 | * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined. |