From: Kim F. Storm Date: Tue, 14 Sep 2004 20:53:18 +0000 (+0000) Subject: (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT. X-Git-Tag: ttn-vms-21-2-B4~4911 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1b0338f79465c40fb01621a8b83167d6c8de32f0;p=emacs.git (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT. --- 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