diff options
author | Kim F. Storm <storm@cua.dk> | 2004-09-14 20:53:18 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-09-14 20:53:18 +0000 |
commit | 1b0338f79465c40fb01621a8b83167d6c8de32f0 (patch) | |
tree | df1084ed53c18b232e8130a2870c8164b5f6d3ab /src/puresize.h | |
parent | a25fe164fdb75d05e67504ef1b6218212c101dad (diff) | |
download | emacs-1b0338f79465c40fb01621a8b83167d6c8de32f0.tar.gz |
(PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
Diffstat (limited to 'src/puresize.h')
-rw-r--r-- | src/puresize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/puresize.h b/src/puresize.h index 8088a374765..054b2bc4c89 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -47,7 +47,7 @@ Boston, MA 02111-1307, USA. */ /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ #ifndef PURESIZE_RATIO -#if VALBITS + GCTYPEBITS + 1 > 32 +#if BITS_PER_EMACS_INT > 32 #define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */ #else #define PURESIZE_RATIO 1 |