# HG changeset patch # User Jim Blandy # Date 737848881 0 # Node ID 32106dbf6d01f7da76c7cfd35a587b424afc284e # Parent 9c3ca97cf30aabde022b10b1c63c4e10bb093f55 Some changes from Michael K. Johnson for Linux. * sysdep.c (sys_siglist): Don't define this if HAVE_SYS_SIGLIST is #defined. That lets the system provide it, if it has it. * syssignal.h (sigmask): Only define this if hasn't given us a definition already. * syssignal.h (sys_sigpause): Fix argument in prototype. * sysdep.c (init_signals): The masks are called empty_mask and full_mask, not signal_empty_mask and signal_full_mask. (signal_handler_t): Moved .... * syssignal.h: ... to here. * systty.h (EMACS_SET_TTY_PGRP): Call tcsetpgrp with the correct arguments. * emacs.c (main): Don't try to establish signal handlers for SIGBUS and SIGSYS unless they're actually #defined. * systty.h [HAVE_TERMIO, __DGUX]: #include . diff -r 9c3ca97cf30a -r 32106dbf6d01 src/systty.h --- a/src/systty.h Wed May 19 21:19:08 1993 +0000 +++ b/src/systty.h Wed May 19 22:01:21 1993 +0000 @@ -23,6 +23,9 @@ /* Include the proper files. */ #ifdef HAVE_TERMIO +#ifdef __DGUX +#include +#endif #include #include #else @@ -215,7 +218,7 @@ #ifdef HAVE_TERMIOS #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd))) -#define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd))) +#define EMACS_SET_TTY_PGRP(fd, pgid) (*(pgid) = tcsetpgrp ((fd), *(pgid))) #else #ifdef TIOCSPGRP