# HG changeset patch # User Chong Yidong # Date 1217795640 0 # Node ID b8af8ca76801548538a048824d30b5674527171d # Parent 13bc3a134019d7432311e4fd989efe036de9764a (windowDidResize): Remove stopModel call. diff -r 13bc3a134019 -r b8af8ca76801 src/nsterm.m --- a/src/nsterm.m Sun Aug 03 20:33:50 2008 +0000 +++ b/src/nsterm.m Sun Aug 03 20:34:00 2008 +0000 @@ -4953,7 +4953,13 @@ x_set_window_size (emacsframe, 0, cols, rows); ns_send_appdefined (-1); + + /* The following line causes a crash on GNUstep. Adrian Roberts + says he doesn't remember why he added this line, but removing it + doesn't seem to cause problems on OSX, either. */ +#if 0 [NSApp stopModal]; +#endif }