From: Andreas Schwab Date: Sun, 16 Apr 2006 12:19:47 +0000 (+0000) Subject: (PURESIZE_RATIO): Reduce to 10/6. X-Git-Tag: emacs-pretest-22.0.90~3128 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a258a33e0d76d1f173fbb3afbf0bec5192fcd12;p=emacs.git (PURESIZE_RATIO): Reduce to 10/6. --- diff --git a/src/ChangeLog b/src/ChangeLog index b7b0c5bbc5b..432e0915cb3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-04-16 Andreas Schwab + + * puresize.h (PURESIZE_RATIO): Reduce to 10/6. + 2006-04-15 Romain Francoise * puresize.h (BASE_PURESIZE): Increment to 1210000. diff --git a/src/puresize.h b/src/puresize.h index c89ba6b0479..67e758ae799 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -49,7 +49,7 @@ Boston, MA 02110-1301, USA. */ /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ #ifndef PURESIZE_RATIO #if BITS_PER_EMACS_INT > 32 -#define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */ +#define PURESIZE_RATIO 10/6 /* Don't surround with `()'. */ #else #define PURESIZE_RATIO 1 #endif