# HG changeset patch # User Richard M. Stallman # Date 758020733 0 # Node ID da0a6ed995bdd9adefdbd09f59316f0078ec0713 # Parent 636e4507b52b293af3442ab54ea33e93ed937fb5 [MSDOS]: don't #include . We haven't got it. Declare dummy main field. Don't ever use TABs. diff -r 636e4507b52b -r da0a6ed995bd src/systty.h --- a/src/systty.h Sat Jan 08 09:18:29 1994 +0000 +++ b/src/systty.h Sat Jan 08 09:18:53 1994 +0000 @@ -68,7 +68,9 @@ #include #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ #ifndef VMS +#ifndef MSDOS #include +#endif #else /* VMS */ #include static struct iosb @@ -352,10 +354,14 @@ #ifdef VMS struct sensemode main; #else +#ifdef MSDOS + int main; +#else struct sgttyb main; #endif #endif #endif +#endif /* If we have TERMIOS, we don't need to do this - they're taken care of by the tc*attr calls. */ @@ -399,7 +405,11 @@ #else +#ifdef MSDOS +#define EMACS_TTY_TABS_OK(p) 0 +#else /* not MSDOS */ #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) +#endif /* not MSDOS */ #endif /* not def VMS */ #endif /* not def HAVE_TERMIO */