diff options
| author | Dan Nicolaescu | 2010-05-04 00:40:53 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-05-04 00:40:53 -0700 |
| commit | 58eb6cf0f77547d29f4fddca922eb6f98c0ffb28 (patch) | |
| tree | dc7bd97ce77e679cfb648145413039dff6ff4c92 /src/term.c | |
| parent | ef03a4e61efa0003b1b6be961b58297ccfddc664 (diff) | |
| download | emacs-58eb6cf0f77547d29f4fddca922eb6f98c0ffb28.tar.gz emacs-58eb6cf0f77547d29f4fddca922eb6f98c0ffb28.zip | |
Remove BSD_PGRPS.
* s/bsd-common.h (BSD_PGRPS): Remove undef.
* s/gnu-linux.h (BSD_PGRPS): Remove.
* term.c (dissociate_if_controlling_tty):
* sysdep.c (narrow_foreground_group, widen_foreground_group)
(init_sys_modes, reset_sys_modes):
* emacs.c (main):
* callproc.c (Fcall_process, child_setup): Remove code depending
on BSD_PGRPS.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index bb143207758..fad6e3c80d7 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -3379,7 +3379,7 @@ dissociate_if_controlling_tty (int fd) | |||
| 3379 | EMACS_GET_TTY_PGRP (fd, &pgid); /* If tcgetpgrp succeeds, fd is the ctty. */ | 3379 | EMACS_GET_TTY_PGRP (fd, &pgid); /* If tcgetpgrp succeeds, fd is the ctty. */ |
| 3380 | if (pgid != -1) | 3380 | if (pgid != -1) |
| 3381 | { | 3381 | { |
| 3382 | #if defined (USG) && !defined (BSD_PGRPS) | 3382 | #if defined (USG) |
| 3383 | setpgrp (); | 3383 | setpgrp (); |
| 3384 | no_controlling_tty = 1; | 3384 | no_controlling_tty = 1; |
| 3385 | #elif defined (CYGWIN) | 3385 | #elif defined (CYGWIN) |