lib-src/emacsclient.c (main): #ifdef out previous change on Windows.
This commit is contained in:
parent
8cf07e5a55
commit
f11352e68b
2 changed files with 6 additions and 0 deletions
|
@ -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).
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue