# HG changeset patch # User Miles Bader # Date 1180060685 0 # Node ID 2f7d72970d55b92b2681d1ac17b7aa398137fd71 # Parent 06d717170de9a88888b51e0e26be13c5f31d1983# Parent 4632b669841983bf6b054ae8dd993d79b38077fc Merge from emacs--rel--22 Patches applied: * emacs--rel--22 (patch 25) - Update from CVS 2007-05-24 YAMAMOTO Mitsuharu * mac/INSTALL: Add note about moving self-contained application bundle to non-ASCII directory. 2007-05-24 YAMAMOTO Mitsuharu * src/macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event): Call mac_wakeup_from_rne on window size change. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-770 diff -r 06d717170de9 -r 2f7d72970d55 mac/ChangeLog --- a/mac/ChangeLog Fri May 25 02:24:11 2007 +0000 +++ b/mac/ChangeLog Fri May 25 02:38:05 2007 +0000 @@ -1,3 +1,8 @@ +2007-05-24 YAMAMOTO Mitsuharu + + * INSTALL: Add note about moving self-contained application bundle + to non-ASCII directory. + 2007-04-26 YAMAMOTO Mitsuharu * INSTALL: Fix description about using colors in terminal. diff -r 06d717170de9 -r 2f7d72970d55 mac/INSTALL --- a/mac/INSTALL Fri May 25 02:24:11 2007 +0000 +++ b/mac/INSTALL Fri May 25 02:38:05 2007 +0000 @@ -153,6 +153,11 @@ For usage of other options, use the --help option. +Note: due to the problem "Installing to a directory with non-ASCII +characters in the name fails" mentioned in etc/PROBLEMS, you may not +move a self-contained Emacs.app application bundle to a non-ASCII +directory. + * BUILDING EMACS ON MAC OS Classic You can use MPW-GM (Aug. 2001) to build Emacs. MPW-GM can be diff -r 06d717170de9 -r 2f7d72970d55 src/ChangeLog --- a/src/ChangeLog Fri May 25 02:24:11 2007 +0000 +++ b/src/ChangeLog Fri May 25 02:38:05 2007 +0000 @@ -1,3 +1,8 @@ +2007-05-24 YAMAMOTO Mitsuharu + + * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event): + Call mac_wakeup_from_rne on window size change. + 2007-05-25 Chong Yidong * image.c (uncache_image): Fix typo. diff -r 06d717170de9 -r 2f7d72970d55 src/macterm.c --- a/src/macterm.c Fri May 25 02:24:11 2007 +0000 +++ b/src/macterm.c Fri May 25 02:38:05 2007 +0000 @@ -9893,6 +9893,7 @@ width = bounds.right - bounds.left; height = bounds.bottom - bounds.top; mac_handle_size_change (f, width, height); + mac_wakeup_from_rne (); } }