summaryrefslogtreecommitdiff
path: root/src/puresize.h
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2004-09-14 20:53:18 +0000
committerKim F. Storm <storm@cua.dk>2004-09-14 20:53:18 +0000
commit1b0338f79465c40fb01621a8b83167d6c8de32f0 (patch)
treedf1084ed53c18b232e8130a2870c8164b5f6d3ab /src/puresize.h
parenta25fe164fdb75d05e67504ef1b6218212c101dad (diff)
downloademacs-1b0338f79465c40fb01621a8b83167d6c8de32f0.tar.gz
(PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
Diffstat (limited to 'src/puresize.h')
-rw-r--r--src/puresize.h2
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