# HG changeset patch # User Richard M. Stallman # Date 783679285 0 # Node ID 7993d4ffd67427f16491b81b9630770b3aef585c # Parent 64a874af5a58bb3173228fe87b180d0598f1a9de Test DOS_NT, not MSDOS. diff -r 64a874af5a58 -r 7993d4ffd674 src/systty.h --- a/src/systty.h Tue Nov 01 08:39:49 1994 +0000 +++ b/src/systty.h Tue Nov 01 08:41:25 1994 +0000 @@ -5,7 +5,7 @@ GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, @@ -72,9 +72,9 @@ #include #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ #ifndef VMS -#ifndef MSDOS +#ifndef DOS_NT #include -#endif +#endif /* not DOS_NT */ #else /* VMS */ #include static struct iosb @@ -356,11 +356,11 @@ #ifdef VMS struct sensemode main; #else -#ifdef MSDOS +#ifdef DOS_NT int main; -#else +#else /* not DOS_NT */ struct sgttyb main; -#endif +#endif /* not DOS_NT */ #endif #endif #endif @@ -411,11 +411,11 @@ #else -#ifdef MSDOS +#ifdef DOS_NT #define EMACS_TTY_TABS_OK(p) 0 -#else /* not MSDOS */ +#else /* not DOS_NT */ #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) -#endif /* not MSDOS */ +#endif /* not DOS_NT */ #endif /* not def VMS */ #endif /* not def HAVE_TERMIO */