From: Richard M. Stallman Date: Fri, 14 Jan 1994 18:09:06 +0000 (+0000) Subject: (main) [USG5 and INTERRUPT_INPUT]: Call setpgrp. X-Git-Tag: emacs-19.34~10268 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b026af49147c44643812fc85d458c1c5179524be;p=emacs.git (main) [USG5 and INTERRUPT_INPUT]: Call setpgrp. --- diff --git a/src/emacs.c b/src/emacs.c index 143a85020c5..bd5e175bebe 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -346,6 +346,10 @@ main (argc, argv, envp) inherited_pgroup = EMACS_GETPGRP (0); setpgrp (0, getpid ()); } +#else +#if defined (USG5) && defined (INTERRUPT_INPUT) + setpgrp (); +#endif #endif