diff options
| author | Karl Heuer | 1994-04-29 23:16:43 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-29 23:16:43 +0000 |
| commit | 6ba93f9d7ba1b20ee69c441ecba2cbb8cce5203c (patch) | |
| tree | 6c76dd14eb63706400ded0fefd35745e087db88d /src | |
| parent | ad9445b9c822cd4c58b1530be3e501eae00ed92a (diff) | |
| download | emacs-6ba93f9d7ba1b20ee69c441ecba2cbb8cce5203c.tar.gz emacs-6ba93f9d7ba1b20ee69c441ecba2cbb8cce5203c.zip | |
[MSDOS]: Re-enable some #undef's.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 5 | ||||
| -rw-r--r-- | src/floatfns.c | 5 | ||||
| -rw-r--r-- | src/lread.c | 5 |
3 files changed, 3 insertions, 12 deletions
diff --git a/src/data.c b/src/data.c index b9909c7677f..8054379799c 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -30,15 +30,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 30 | 30 | ||
| 31 | #include "syssignal.h" | 31 | #include "syssignal.h" |
| 32 | 32 | ||
| 33 | #if 0 /* That is untrue--XINT is used below, and it uses INTBITS. | ||
| 34 | What in the world is values.h, anyway? */ | ||
| 35 | #ifdef MSDOS | 33 | #ifdef MSDOS |
| 36 | /* These are redefined in values.h and not used here */ | 34 | /* These are redefined (correctly, but differently) in values.h. */ |
| 37 | #undef INTBITS | 35 | #undef INTBITS |
| 38 | #undef LONGBITS | 36 | #undef LONGBITS |
| 39 | #undef SHORTBITS | 37 | #undef SHORTBITS |
| 40 | #endif | 38 | #endif |
| 41 | #endif | ||
| 42 | 39 | ||
| 43 | #ifdef LISP_FLOAT_TYPE | 40 | #ifdef LISP_FLOAT_TYPE |
| 44 | 41 | ||
diff --git a/src/floatfns.c b/src/floatfns.c index 10767e271fd..8a555aad645 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -53,15 +53,12 @@ Lisp_Object Qarith_error; | |||
| 53 | 53 | ||
| 54 | #ifdef LISP_FLOAT_TYPE | 54 | #ifdef LISP_FLOAT_TYPE |
| 55 | 55 | ||
| 56 | #if 0 /* That is untrue--XINT is used below, and it uses INTBITS. | ||
| 57 | What in the world is values.h, anyway? */ | ||
| 58 | #ifdef MSDOS | 56 | #ifdef MSDOS |
| 59 | /* These are redefined in <values.h> and not used here */ | 57 | /* These are redefined (correctly, but differently) in values.h. */ |
| 60 | #undef INTBITS | 58 | #undef INTBITS |
| 61 | #undef LONGBITS | 59 | #undef LONGBITS |
| 62 | #undef SHORTBITS | 60 | #undef SHORTBITS |
| 63 | #endif | 61 | #endif |
| 64 | #endif | ||
| 65 | 62 | ||
| 66 | /* Work around a problem that happens because math.h on hpux 7 | 63 | /* Work around a problem that happens because math.h on hpux 7 |
| 67 | defines two static variables--which, in Emacs, are not really static, | 64 | defines two static variables--which, in Emacs, are not really static, |
diff --git a/src/lread.c b/src/lread.c index 545256904d6..bdee700187d 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -48,15 +48,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 48 | #include <stdlib.h> | 48 | #include <stdlib.h> |
| 49 | #endif | 49 | #endif |
| 50 | 50 | ||
| 51 | #if 0 /* That is untrue--XINT is used below, and it uses INTBITS. | ||
| 52 | What in the world is values.h, anyway? */ | ||
| 53 | #ifdef MSDOS | 51 | #ifdef MSDOS |
| 54 | /* These are redefined in <values.h> and not used here */ | 52 | /* These are redefined (correctly, but differently) in values.h. */ |
| 55 | #undef INTBITS | 53 | #undef INTBITS |
| 56 | #undef LONGBITS | 54 | #undef LONGBITS |
| 57 | #undef SHORTBITS | 55 | #undef SHORTBITS |
| 58 | #endif | 56 | #endif |
| 59 | #endif | ||
| 60 | 57 | ||
| 61 | #include <math.h> | 58 | #include <math.h> |
| 62 | #endif /* LISP_FLOAT_TYPE */ | 59 | #endif /* LISP_FLOAT_TYPE */ |