aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2006-04-16 12:19:47 +0000
committerAndreas Schwab2006-04-16 12:19:47 +0000
commit6a258a33e0d76d1f173fbb3afbf0bec5192fcd12 (patch)
tree1afc196978bed490db7fce90f6705c96f62ce687 /src
parent51fa34bc588ffe6b6d6d20791ffaa3a855873e13 (diff)
downloademacs-6a258a33e0d76d1f173fbb3afbf0bec5192fcd12.tar.gz
emacs-6a258a33e0d76d1f173fbb3afbf0bec5192fcd12.zip
(PURESIZE_RATIO): Reduce to 10/6.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/puresize.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b7b0c5bbc5b..432e0915cb3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12006-04-16 Andreas Schwab <schwab@suse.de>
2
3 * puresize.h (PURESIZE_RATIO): Reduce to 10/6.
4
12006-04-15 Romain Francoise <romain@orebokech.com> 52006-04-15 Romain Francoise <romain@orebokech.com>
2 6
3 * puresize.h (BASE_PURESIZE): Increment to 1210000. 7 * 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. */
49/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 49/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
50#ifndef PURESIZE_RATIO 50#ifndef PURESIZE_RATIO
51#if BITS_PER_EMACS_INT > 32 51#if BITS_PER_EMACS_INT > 32
52#define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */ 52#define PURESIZE_RATIO 10/6 /* Don't surround with `()'. */
53#else 53#else
54#define PURESIZE_RATIO 1 54#define PURESIZE_RATIO 1
55#endif 55#endif