1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(BASE_PURESIZE): Increase to 9/5.

This commit is contained in:
Andreas Schwab 2002-02-15 21:52:12 +00:00
parent bdf67c5954
commit 5407e8a75f
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
2002-02-15 Andreas Schwab <schwab@suse.de>
* puresize.h (BASE_PURESIZE): Increase to 9/5.
* alloc.c (NSTATICS): Increase to 1280.
2002-02-15 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>

View file

@ -1,5 +1,5 @@
/* How much read-only Lisp storage a dumped Emacs needs.
Copyright (C) 1993 Free Software Foundation, Inc.
Copyright (C) 1993, 2002 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@ -48,7 +48,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
#define PURESIZE_RATIO 8/5 /* Don't surround with `()'. */
#define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */
#else
#define PURESIZE_RATIO 1
#endif