aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2002-02-15 21:52:12 +0000
committerAndreas Schwab2002-02-15 21:52:12 +0000
commit5407e8a75f1903e3f34a92ab78a0cfe2d2129f9b (patch)
treebdc55039e8255ed6ce0dd5ef58aa7d9f81a66162 /src
parentbdf67c5954e5131530a98a6b4155e50d489a3e40 (diff)
downloademacs-5407e8a75f1903e3f34a92ab78a0cfe2d2129f9b.tar.gz
emacs-5407e8a75f1903e3f34a92ab78a0cfe2d2129f9b.zip
(BASE_PURESIZE): Increase to 9/5.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/puresize.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 39f0106235a..3e69a246aa3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12002-02-15 Andreas Schwab <schwab@suse.de> 12002-02-15 Andreas Schwab <schwab@suse.de>
2 2
3 * puresize.h (BASE_PURESIZE): Increase to 9/5.
4
3 * alloc.c (NSTATICS): Increase to 1280. 5 * alloc.c (NSTATICS): Increase to 1280.
4 6
52002-02-15 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 72002-02-15 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
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 @@
1/* How much read-only Lisp storage a dumped Emacs needs. 1/* How much read-only Lisp storage a dumped Emacs needs.
2 Copyright (C) 1993 Free Software Foundation, Inc. 2 Copyright (C) 1993, 2002 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -48,7 +48,7 @@ Boston, MA 02111-1307, USA. */
48/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 48/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
49#ifndef PURESIZE_RATIO 49#ifndef PURESIZE_RATIO
50#if VALBITS + GCTYPEBITS + 1 > 32 50#if VALBITS + GCTYPEBITS + 1 > 32
51#define PURESIZE_RATIO 8/5 /* Don't surround with `()'. */ 51#define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */
52#else 52#else
53#define PURESIZE_RATIO 1 53#define PURESIZE_RATIO 1
54#endif 54#endif