Mercurial > emacs
changeset 105729:15ad48c965e3
(PURESIZE_RATIO): Decrease to 11/7.
author | Andreas Schwab <schwab@linux-m68k.org> |
---|---|
date | Fri, 23 Oct 2009 17:56:06 +0000 |
parents | 5cbf00ec9f94 |
children | 414178e8f10d |
files | src/ChangeLog src/puresize.h |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Oct 23 17:52:56 2009 +0000 +++ b/src/ChangeLog Fri Oct 23 17:56:06 2009 +0000 @@ -1,3 +1,7 @@ +2009-10-23 Andreas Schwab <schwab@linux-m68k.org> + + * puresize.h (PURESIZE_RATIO): Decrease to 11/7. + 2009-10-23 Chong Yidong <cyd@stupidchicken.com> * window.c (Fwindow_edges, Fwindow_pixel_edges)
--- a/src/puresize.h Fri Oct 23 17:52:56 2009 +0000 +++ b/src/puresize.h Fri Oct 23 17:56:06 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 10/6 /* Don't surround with `()'. */ +#define PURESIZE_RATIO 11/7 /* Don't surround with `()'. */ #else #define PURESIZE_RATIO 1 #endif