From 1b0338f79465c40fb01621a8b83167d6c8de32f0 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Tue, 14 Sep 2004 20:53:18 +0000 Subject: [PATCH] (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT. --- src/puresize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2