]> git.eshelyaron.com Git - emacs.git/commitdiff
lib-src/emacsclient.c (main): #ifdef out previous change on Windows.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 10 Mar 2014 00:09:30 +0000 (01:09 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 10 Mar 2014 00:09:30 +0000 (01:09 +0100)
lib-src/ChangeLog
lib-src/emacsclient.c

index 0c3d7d723c548bf0af92134ca4d989d1c31b0e51..7e7f6bf3771e5bc6349e302e71063d0a5fb91595 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-10  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacsclient.c (main): #ifdef out previous change on Windows.
+
 2014-03-09  Paul Eggert  <eggert@cs.ucla.edu>
 
        Fix emacsclient terminal corruption when in background (Bug#16892).
index cf16874589d6659c83affd18f50ae0700e02ea3d..bd0aa121836902cf44bbf0b02c6fe8157cb2fb71 100644 (file)
@@ -1556,6 +1556,7 @@ main (int argc, char **argv)
       exit (EXIT_FAILURE);
     }
 
+#ifndef WINDOWSNT
   if (tty)
     {
       pid_t pgrp = getpgrp ();
@@ -1563,6 +1564,7 @@ main (int argc, char **argv)
       if (0 <= tcpgrp && tcpgrp != pgrp)
        kill (-pgrp, SIGTTIN);
     }
+#endif /* !WINDOWSNT */
 
   /* If alternate_editor is the empty string, start the emacs daemon
      in case of failure to connect.  */