aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2009-10-23 17:56:06 +0000
committerAndreas Schwab2009-10-23 17:56:06 +0000
commita599b3e810d6b4898a8bc71c306b78fe86c47155 (patch)
tree0e4c80da902c28d393a68df19367baa2d957a7e8 /src
parentb35ac83e4679311c23e5827bd931096be3131f49 (diff)
downloademacs-a599b3e810d6b4898a8bc71c306b78fe86c47155.tar.gz
emacs-a599b3e810d6b4898a8bc71c306b78fe86c47155.zip
(PURESIZE_RATIO): Decrease to 11/7.
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 24c2553695f..8d5d29a106b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-10-23 Andreas Schwab <schwab@linux-m68k.org>
2
3 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
4
12009-10-23 Chong Yidong <cyd@stupidchicken.com> 52009-10-23 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * window.c (Fwindow_edges, Fwindow_pixel_edges) 7 * 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 <http://www.gnu.org/licenses/>. */
47/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 47/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
48#ifndef PURESIZE_RATIO 48#ifndef PURESIZE_RATIO
49#if BITS_PER_EMACS_INT > 32 49#if BITS_PER_EMACS_INT > 32
50#define PURESIZE_RATIO 10/6 /* Don't surround with `()'. */ 50#define PURESIZE_RATIO 11/7 /* Don't surround with `()'. */
51#else 51#else
52#define PURESIZE_RATIO 1 52#define PURESIZE_RATIO 1
53#endif 53#endif