comparison src/emacs.c @ 5512:9d548eeedc06

(main): Don't call setpgrp if !initialized.
author Richard M. Stallman <rms@gnu.org>
date Sat, 08 Jan 1994 13:26:00 +0000
parents 2a0ba54aefb5
children 84fcbbd80e3d
comparison
equal deleted inserted replaced
5511:b4da518d3ec7 5512:9d548eeedc06
339 #endif 339 #endif
340 340
341 clearerr (stdin); 341 clearerr (stdin);
342 342
343 #ifdef BSD 343 #ifdef BSD
344 { 344 if (initialized)
345 inherited_pgroup = EMACS_GETPGRP (0); 345 {
346 setpgrp (0, getpid ()); 346 inherited_pgroup = EMACS_GETPGRP (0);
347 } 347 setpgrp (0, getpid ());
348 }
348 #endif 349 #endif
349 350
350 351
351 #ifdef APOLLO 352 #ifdef APOLLO
352 #ifndef APOLLO_SR10 353 #ifndef APOLLO_SR10