aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-01 08:41:25 +0000
committerRichard M. Stallman1994-11-01 08:41:25 +0000
commit101adcb531236e59b98a5bbc7fad8661444660f0 (patch)
tree544cef9926a61eafcb4c7c2431308b6c9f979b92 /src
parentfe03522be20223eb522838cb115e8a97b6aac1b0 (diff)
downloademacs-101adcb531236e59b98a5bbc7fad8661444660f0.tar.gz
emacs-101adcb531236e59b98a5bbc7fad8661444660f0.zip
Test DOS_NT, not MSDOS.
Diffstat (limited to 'src')
-rw-r--r--src/systty.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/systty.h b/src/systty.h
index bb71fe5f156..b74215b84c1 100644
--- a/src/systty.h
+++ b/src/systty.h
@@ -5,7 +5,7 @@ This file is part of GNU Emacs.
5 5
6GNU Emacs is free software; you can redistribute it and/or modify 6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by 7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option) 8the Free Software Foundation; either version 2, or (at your option)
9any later version. 9any later version.
10 10
11GNU Emacs is distributed in the hope that it will be useful, 11GNU Emacs is distributed in the hope that it will be useful,
@@ -72,9 +72,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
72#include <fcntl.h> 72#include <fcntl.h>
73#else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ 73#else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
74#ifndef VMS 74#ifndef VMS
75#ifndef MSDOS 75#ifndef DOS_NT
76#include <sgtty.h> 76#include <sgtty.h>
77#endif 77#endif /* not DOS_NT */
78#else /* VMS */ 78#else /* VMS */
79#include <descrip.h> 79#include <descrip.h>
80static struct iosb 80static struct iosb
@@ -356,11 +356,11 @@ struct emacs_tty {
356#ifdef VMS 356#ifdef VMS
357 struct sensemode main; 357 struct sensemode main;
358#else 358#else
359#ifdef MSDOS 359#ifdef DOS_NT
360 int main; 360 int main;
361#else 361#else /* not DOS_NT */
362 struct sgttyb main; 362 struct sgttyb main;
363#endif 363#endif /* not DOS_NT */
364#endif 364#endif
365#endif 365#endif
366#endif 366#endif
@@ -411,11 +411,11 @@ struct emacs_tty {
411 411
412#else 412#else
413 413
414#ifdef MSDOS 414#ifdef DOS_NT
415#define EMACS_TTY_TABS_OK(p) 0 415#define EMACS_TTY_TABS_OK(p) 0
416#else /* not MSDOS */ 416#else /* not DOS_NT */
417#define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) 417#define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS)
418#endif /* not MSDOS */ 418#endif /* not DOS_NT */
419 419
420#endif /* not def VMS */ 420#endif /* not def VMS */
421#endif /* not def HAVE_TERMIO */ 421#endif /* not def HAVE_TERMIO */