Mercurial > emacs
changeset 4533:51eef6f31754
(HAVE_TCATTR): Macro #defined.
(HAVE_CLOSEDIR): #undef to allow use of closedir in sysdep.c.
(SIGTSTP): Commented #undef to allow use of ^Z in shell-mode.
(SIGNALS_VIA_CHARACTERS): #defined.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 10 Aug 1993 17:27:50 +0000 |
parents | c2afed091afb |
children | 7ef95208bfe7 |
files | src/m/dpx2.h |
diffstat | 1 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/m/dpx2.h Tue Aug 10 17:03:06 1993 +0000 +++ b/src/m/dpx2.h Tue Aug 10 17:27:50 1993 +0000 @@ -182,7 +182,7 @@ * to start a sub-shell rather than suspend-emacs, * un-comment out the next line. */ -# undef SIGTSTP /* make suspend-emacs spawn a sub-shell */ +/* # undef SIGTSTP /* make suspend-emacs spawn a sub-shell */ # ifdef NOMULTIPLEJOBS # undef NOMULTIPLEJOBS # endif @@ -226,6 +226,7 @@ /* we have termios */ #undef HAVE_TERMIO #define HAVE_TERMIOS +#define HAVE_TCATTR /* we also have this */ #define HAVE_PTYS @@ -239,6 +240,15 @@ enters in an infinite loop. Avoid calling it */ #define F_SETOWN_BUG -/* end of dpx2.h */ +/* system closedir sometimes complains about wrong descriptor + for no apparent reasons. Use the provided closedir in sysdep.c instead */ +#ifdef HAVE_CLOSEDIR +#undef HAVE_CLOSEDIR +#endif + +/* Send signals to subprocesses by "typing" signal chars at them. */ +#define SIGNALS_VIA_CHARACTERS + + /* end of dpx2.h */