Mercurial > emacs
changeset 105770:435ad0d7953a
(PURESIZE_RATIO): Increase back to 10/6.
author | Andreas Schwab <schwab@linux-m68k.org> |
---|---|
date | Mon, 26 Oct 2009 10:39:41 +0000 |
parents | a71b9df39f6e |
children | 92f6698524cd |
files | src/ChangeLog src/puresize.h |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Mon Oct 26 10:04:37 2009 +0000 +++ b/src/ChangeLog Mon Oct 26 10:39:41 2009 +0000 @@ -1,3 +1,7 @@ +2009-10-26 Andreas Schwab <schwab@redhat.com> + + * puresize.h (PURESIZE_RATIO): Increase back to 10/6. + 2009-10-26 Juanma Barranquero <lekktu@gmail.com> * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
--- a/src/puresize.h Mon Oct 26 10:04:37 2009 +0000 +++ b/src/puresize.h Mon Oct 26 10:39:41 2009 +0000 @@ -47,7 +47,7 @@ /* 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