From: Eli Zaretskii Date: Fri, 19 Oct 2012 10:05:09 +0000 (+0200) Subject: Increase the value of BASE_PURESIZE to avoid pure space overflow. X-Git-Tag: emacs-24.2.90~215 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c052c554b44b809e672370e498dd3957494126d8;p=emacs.git Increase the value of BASE_PURESIZE to avoid pure space overflow. src/puresize.h (BASE_PURESIZE): Bump the base value to 1700000. See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html for the reasons. --- diff --git a/src/ChangeLog b/src/ChangeLog index cf7302914ab..cef1edff87d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2012-10-19 Eli Zaretskii + * puresize.h (BASE_PURESIZE): Bump the base value to 1700000. See + http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html + for the reasons. + * alloc.c (NSTATICS): Decrease to 0x800. 2012-10-19 Stefan Monnier diff --git a/src/puresize.h b/src/puresize.h index 2f024345d61..26395a5729d 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -40,7 +40,7 @@ along with GNU Emacs. If not, see . */ #endif #ifndef BASE_PURESIZE -#define BASE_PURESIZE (1620000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) +#define BASE_PURESIZE (1700000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) #endif /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */