From: Andreas Schwab Date: Fri, 15 Feb 2002 21:52:12 +0000 (+0000) Subject: (BASE_PURESIZE): Increase to 9/5. X-Git-Tag: ttn-vms-21-2-B4~16663 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5407e8a75f1903e3f34a92ab78a0cfe2d2129f9b;p=emacs.git (BASE_PURESIZE): Increase to 9/5. --- diff --git a/src/ChangeLog b/src/ChangeLog index 39f0106235a..3e69a246aa3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2002-02-15 Andreas Schwab + * puresize.h (BASE_PURESIZE): Increase to 9/5. + * alloc.c (NSTATICS): Increase to 1280. 2002-02-15 Kai Gro,A_(Bjohann diff --git a/src/puresize.h b/src/puresize.h index abedce42c72..b07f72bc914 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -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