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
This commit is contained in:
Miles Bader 2007-05-25 02:38:05 +00:00
commit 5dfdf72f7a
4 changed files with 16 additions and 0 deletions

View file

@ -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.

View file

@ -153,6 +153,11 @@ options to user
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

View file

@ -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.

View file

@ -9893,6 +9893,7 @@ mac_handle_window_event (next_handler, event, data)
width = bounds.right - bounds.left;
height = bounds.bottom - bounds.top;
mac_handle_size_change (f, width, height);
mac_wakeup_from_rne ();
}
}