aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm1995-10-11 14:55:17 +0000
committerKim F. Storm1995-10-11 14:55:17 +0000
commit920b97abd61332a0912b0502e7bc3218ea95031e (patch)
treea2632876be11ce0819c8e5277d0dd9801d561310
parentad40254121ef856baecf33ce0a104f2ee6974d23 (diff)
downloademacs-920b97abd61332a0912b0502e7bc3218ea95031e.tar.gz
emacs-920b97abd61332a0912b0502e7bc3218ea95031e.zip
Check that DJGPP v. 1 is used.
Define __DJGPP__ to 1. Simplified INTERNAL_TERMINAL termcap definition. Removed #define fflush internal_flush.
-rw-r--r--src/s/msdos.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/s/msdos.h b/src/s/msdos.h
index 956af45c5bf..146a87538b9 100644
--- a/src/s/msdos.h
+++ b/src/s/msdos.h
@@ -40,6 +40,16 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
40#define MSDOS 40#define MSDOS
41#endif 41#endif
42 42
43#ifdef __GO32__
44#ifndef __DJGPP__
45#define __DJGPP__ 1 /* V2 defines __DJGPP__ == 2 */
46#else
47You lose; /* Emacs for DOS must be compiled with DJGPP V1 */
48#endif
49#else
50You lose; /* Emacs for DOS must be compiled with DJGPP */
51#endif
52
43#define DOS_NT /* MSDOS or WINDOWSNT */ 53#define DOS_NT /* MSDOS or WINDOWSNT */
44#undef BSD 54#undef BSD
45#undef VMS 55#undef VMS
@@ -185,15 +195,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
185 195
186/* When $TERM is "internal" then this is substituted: */ 196/* When $TERM is "internal" then this is substituted: */
187#define INTERNAL_TERMINAL "pc|bios|IBM PC with colour display:\ 197#define INTERNAL_TERMINAL "pc|bios|IBM PC with colour display:\
188:co#80:li#25:km:\ 198:co#80:li#25:km:ms:cm=<CM>:cl=<CL>:ce=<CE>:"
189:cm=\E@%.%.:\
190:do=^J:le=^H:up=\EU:ri=\ER:\
191:ti=\EA\027:te=\EA\007\EE:\
192:so=\EA\077:se=\EA\027:\
193:ms:mb=\EX\200:md=\EX\010:mk=\EA\161:me=\EA\027:\
194:cl=\EC:ce=\EE:\
195:vb=\EB\140:bl=\007:"
196#define fflush internal_flush
197 199
198/* Define this to a function (Fdowncase, Fupcase) if your file system 200/* Define this to a function (Fdowncase, Fupcase) if your file system
199 likes that */ 201 likes that */