1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 11:33:09 -08:00

(PURESIZE_RATIO): Reduce to 10/6.

This commit is contained in:
Andreas Schwab 2006-04-16 12:19:47 +00:00
parent 51fa34bc58
commit 6a258a33e0
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-04-16 Andreas Schwab <schwab@suse.de>
* puresize.h (PURESIZE_RATIO): Reduce to 10/6.
2006-04-15 Romain Francoise <romain@orebokech.com>
* puresize.h (BASE_PURESIZE): Increment to 1210000.

View file

@ -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