summaryrefslogtreecommitdiff
path: root/src/m/dpx2.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-08-10 17:27:50 +0000
committerRichard M. Stallman <rms@gnu.org>1993-08-10 17:27:50 +0000
commit551dd6e32f35181bda167c89aa495a41d7b7653f (patch)
tree659a413fec1cb03361ff5b88129387aff4e96402 /src/m/dpx2.h
parent78210c952bb6435b820e5f5163c7f3f247a2bf3d (diff)
downloademacs-551dd6e32f35181bda167c89aa495a41d7b7653f.tar.gz
(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.
Diffstat (limited to 'src/m/dpx2.h')
-rw-r--r--src/m/dpx2.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/m/dpx2.h b/src/m/dpx2.h
index 909537ab458..bcc0156f44d 100644
--- a/src/m/dpx2.h
+++ b/src/m/dpx2.h
@@ -182,7 +182,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
* 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 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* we have termios */
#undef HAVE_TERMIO
#define HAVE_TERMIOS
+#define HAVE_TCATTR
/* we also have this */
#define HAVE_PTYS
@@ -239,6 +240,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
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 */