aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-10 17:27:50 +0000
committerRichard M. Stallman1993-08-10 17:27:50 +0000
commit551dd6e32f35181bda167c89aa495a41d7b7653f (patch)
tree659a413fec1cb03361ff5b88129387aff4e96402 /src
parent78210c952bb6435b820e5f5163c7f3f247a2bf3d (diff)
downloademacs-551dd6e32f35181bda167c89aa495a41d7b7653f.tar.gz
emacs-551dd6e32f35181bda167c89aa495a41d7b7653f.zip
(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')
-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. */
182 * to start a sub-shell rather than suspend-emacs, 182 * to start a sub-shell rather than suspend-emacs,
183 * un-comment out the next line. 183 * un-comment out the next line.
184 */ 184 */
185# undef SIGTSTP /* make suspend-emacs spawn a sub-shell */ 185/* # undef SIGTSTP /* make suspend-emacs spawn a sub-shell */
186# ifdef NOMULTIPLEJOBS 186# ifdef NOMULTIPLEJOBS
187# undef NOMULTIPLEJOBS 187# undef NOMULTIPLEJOBS
188# endif 188# endif
@@ -226,6 +226,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
226/* we have termios */ 226/* we have termios */
227#undef HAVE_TERMIO 227#undef HAVE_TERMIO
228#define HAVE_TERMIOS 228#define HAVE_TERMIOS
229#define HAVE_TCATTR
229 230
230/* we also have this */ 231/* we also have this */
231#define HAVE_PTYS 232#define HAVE_PTYS
@@ -239,6 +240,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
239 enters in an infinite loop. Avoid calling it */ 240 enters in an infinite loop. Avoid calling it */
240#define F_SETOWN_BUG 241#define F_SETOWN_BUG
241 242
242/* end of dpx2.h */ 243/* system closedir sometimes complains about wrong descriptor
244 for no apparent reasons. Use the provided closedir in sysdep.c instead */
245#ifdef HAVE_CLOSEDIR
246#undef HAVE_CLOSEDIR
247#endif
248
249/* Send signals to subprocesses by "typing" signal chars at them. */
250#define SIGNALS_VIA_CHARACTERS
251
252 /* end of dpx2.h */
243 253
244 254