From: Andreas Schwab Date: Mon, 26 Oct 2009 10:39:41 +0000 (+0000) Subject: (PURESIZE_RATIO): Increase back to 10/6. X-Git-Tag: emacs-pretest-23.1.90~647 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=242bc74cea4c4052844bd3e283e0d68802f75bcd;p=emacs.git (PURESIZE_RATIO): Increase back to 10/6. --- diff --git a/src/ChangeLog b/src/ChangeLog index 60cbcef8ca7..e313f397ddf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-10-26 Andreas Schwab + + * puresize.h (PURESIZE_RATIO): Increase back to 10/6. + 2009-10-26 Juanma Barranquero * window.c (grow_mini_window): Comment out "delta >= 0" assertion. diff --git a/src/puresize.h b/src/puresize.h index e5925e4c38c..b6665c00649 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -47,7 +47,7 @@ along with GNU Emacs. If not, see . */ /* 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 11/7 /* Don't surround with `()'. */ +#define PURESIZE_RATIO 10/6 /* Don't surround with `()'. */ #else #define PURESIZE_RATIO 1 #endif