]> git.eshelyaron.com Git - emacs.git/commitdiff
Post AppDefined events from the main thread ONLY (bug#23934)
authorAlan Third <alan@idiocy.org>
Wed, 20 Jul 2016 20:59:17 +0000 (21:59 +0100)
committerAlan Third <alan@idiocy.org>
Wed, 3 Aug 2016 16:19:12 +0000 (17:19 +0100)
* src/nsterm.h: Make nextappdefined var not just GNUStep.
* src/nsterm.c (ns_send_appdefined, sendFromMainThread): Remove GNUStep

src/nsterm.h
src/nsterm.m

index 0aea9cca112e92638bb3f46167583f661bc703a7..4b246bd3d0f0c269518326d76ea4a84805a071ba 100644 (file)
@@ -380,9 +380,9 @@ char const * nstrace_fullscreen_type_name (int);
 #endif
 #ifdef NS_IMPL_GNUSTEP
   BOOL applicationDidFinishLaunchingCalled;
+#endif
 @public
   int nextappdefined;
-#endif
 }
 - (void)logNotification: (NSNotification *)notification;
 - (void)antialiasThresholdDidChange:(NSNotification *)notification;
index e6a10b89f81a3295f55d1c1ab15f789e76663785..4d9d10559ea3b949135ed11cff86c0f0f5624a0b 100644 (file)
@@ -3918,8 +3918,8 @@ ns_send_appdefined (int value)
 {
   NSTRACE_WHEN (NSTRACE_GROUP_EVENTS, "ns_send_appdefined(%d)", value);
 
-#ifdef NS_IMPL_GNUSTEP
   // GNUstep needs postEvent to happen on the main thread.
+  // Cocoa needs nextEventMatchingMask to happen on the main thread too.
   if (! [[NSThread currentThread] isMainThread])
     {
       EmacsApp *app = (EmacsApp *)NSApp;
@@ -3929,7 +3929,6 @@ ns_send_appdefined (int value)
                          waitUntilDone:YES];
       return;
     }
-#endif
 
   /* Only post this event if we haven't already posted one.  This will end
        the [NXApp run] main loop after having processed all events queued at
@@ -5542,12 +5541,10 @@ not_in_argv (NSString *arg)
   ns_send_appdefined (-2);
 }
 
-#ifdef NS_IMPL_GNUSTEP
 - (void)sendFromMainThread:(id)unused
 {
   ns_send_appdefined (nextappdefined);
 }
-#endif
 
 - (void)fd_handler:(id)unused
 /* --------------------------------------------------------------------------