1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

(PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.

This commit is contained in:
Kim F. Storm 2004-09-14 20:53:18 +00:00
parent a25fe164fd
commit 1b0338f794

View 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