]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the GTK build
authorPo Lu <luangruo@yahoo.com>
Wed, 1 Jun 2022 00:57:52 +0000 (08:57 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 1 Jun 2022 00:57:52 +0000 (08:57 +0800)
* src/xterm.c (x_wait_for_cell_change): Don't initialize rfds
on GTK.

src/xterm.c

index 186014b0b4342b22c30c1c2e1d6e2ddba1e6f917..f062e6485d6ff2fdb948599813b84735a579a6db 100644 (file)
@@ -14857,9 +14857,9 @@ x_wait_for_cell_change (Lisp_Object cell, struct timespec timeout)
   struct timespec current, at;
 
   at = timespec_add (current_timespec (), timeout);
-  FD_ZERO (&rfds);
 
 #ifndef USE_GTK
+  FD_ZERO (&rfds);
   rc = 0;
 #endif