changeset 81068:2f7d72970d55

Merge from emacs--rel--22 Patches applied: * emacs--rel--22 (patch 25) - Update from CVS 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> * mac/INSTALL: Add note about moving self-contained application bundle to non-ASCII directory. 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> * 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
author Miles Bader <miles@gnu.org>
date Fri, 25 May 2007 02:38:05 +0000
parents 06d717170de9 (current diff) 4632b6698419 (diff)
children b3bd944f9137 422451dd396a
files mac/ChangeLog src/ChangeLog
diffstat 4 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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  <mituharu@math.s.chiba-u.ac.jp>
+
+	* INSTALL: Add note about moving self-contained application bundle
+	to non-ASCII directory.
+
 2007-04-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
 	* INSTALL: Fix description about using colors in terminal.
--- 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
--- 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  <mituharu@math.s.chiba-u.ac.jp>
+
+	* macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
+	Call mac_wakeup_from_rne on window size change.
+
 2007-05-25  Chong Yidong  <cyd@stupidchicken.com>
 
 	* image.c (uncache_image): Fix typo.
--- 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 ();
 	    }
 	}