From: Andreas Schwab Date: Fri, 23 Oct 2009 17:56:06 +0000 (+0000) Subject: (PURESIZE_RATIO): Decrease to 11/7. X-Git-Tag: emacs-pretest-23.1.90~687 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a599b3e810d6b4898a8bc71c306b78fe86c47155;p=emacs.git (PURESIZE_RATIO): Decrease to 11/7. --- diff --git a/src/ChangeLog b/src/ChangeLog index 24c2553695f..8d5d29a106b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-10-23 Andreas Schwab + + * puresize.h (PURESIZE_RATIO): Decrease to 11/7. + 2009-10-23 Chong Yidong * window.c (Fwindow_edges, Fwindow_pixel_edges) diff --git a/src/puresize.h b/src/puresize.h index b6665c00649..e5925e4c38c 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 10/6 /* Don't surround with `()'. */ +#define PURESIZE_RATIO 11/7 /* Don't surround with `()'. */ #else #define PURESIZE_RATIO 1 #endif