]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix NS main thread check (bug#25265)
authorAlan Third <alan@idiocy.org>
Sat, 14 Jan 2017 16:57:46 +0000 (16:57 +0000)
committerAlan Third <alan@idiocy.org>
Sat, 14 Jan 2017 17:00:03 +0000 (17:00 +0000)
* src/nsterm.m (ns_read_socket, ns_select): Replace mainThread with
isMainThread.

src/nsterm.m

index 90664f652ff38f520afe68009dd0fa5d629de005..63f1b15b24ed989096fc65d0c4b0fe9f19bc9271 100644 (file)
@@ -4039,7 +4039,7 @@ ns_read_socket (struct terminal *terminal, struct input_event *hold_quit)
       return i;
     }
 
-  if ([NSThread mainThread])
+  if ([NSThread isMainThread])
     {
       block_input ();
       n_emacs_events_pending = 0;
@@ -4123,7 +4123,7 @@ ns_select (int nfds, fd_set *readfds, fd_set *writefds,
     }
 
   if (NSApp == nil
-      || ![NSThread mainThread]
+      || ![NSThread isMainThread]
       || (timeout && timeout->tv_sec == 0 && timeout->tv_nsec == 0))
     return pselect (nfds, readfds, writefds, exceptfds, timeout, sigmask);