diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-10-31 02:34:16 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-10-31 02:34:16 +0000 |
commit | bc86915f966235c7d6cc0a9b4f7a85c108d9dc7d (patch) | |
tree | 04f9ae6e0b7182c65e72dad124d83c684a17a92b /src/lread.c | |
parent | 2067568b3583007f03440ae32825e93bfaa76d44 (diff) | |
download | emacs-bc86915f966235c7d6cc0a9b4f7a85c108d9dc7d.tar.gz |
(BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):
Rename from SHORTBITS, INTBITS, LONGBITS.
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/lread.c b/src/lread.c index ad0779911ea..c1de692edfd 100644 --- a/src/lread.c +++ b/src/lread.c @@ -50,10 +50,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef MSDOS #include "msdos.h" -/* These are redefined (correctly, but differently) in values.h. */ -#undef INTBITS -#undef LONGBITS -#undef SHORTBITS #endif #include <math.h> @@ -1203,9 +1199,8 @@ read1 (readcharfun, pch, first_in_list) if (c == '"') { Lisp_Object tmp, val; - int bits_per_char = INTBITS / sizeof (int); - int size_in_chars = ((XFASTINT (length) + bits_per_char) - / bits_per_char); + int size_in_chars = ((XFASTINT (length) + BITS_PER_CHAR) + / BITS_PER_CHAR); UNREAD (c); tmp = read1 (readcharfun, pch, first_in_list); |