]> git.eshelyaron.com Git - emacs.git/commitdiff
(PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
authorKim F. Storm <storm@cua.dk>
Tue, 14 Sep 2004 20:53:18 +0000 (20:53 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 14 Sep 2004 20:53:18 +0000 (20:53 +0000)
src/puresize.h

index 8088a374765abe58a147f1b86371c1caf8a2e8a1..054b2bc4c89d3925835a5eefab6a634b8d6e8724 100644 (file)
@@ -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