Fixed buglet in Application.do_suspendresume(), it took the wrong flag to determine suspend/resume -- jvr
diff --git a/Mac/Lib/FrameWork.py b/Mac/Lib/FrameWork.py
index 42ef128..c073abd 100644
--- a/Mac/Lib/FrameWork.py
+++ b/Mac/Lib/FrameWork.py
@@ -379,7 +379,7 @@
 		wid = FrontWindow()
 		if wid and self._windows.has_key(wid):
 			window = self._windows[wid]
-			window.do_activate(modifiers & 1, event)
+			window.do_activate(message & 1, event)
 	
 	def do_kHighLevelEvent(self, event):
 		(what, message, when, where, modifiers) = event