diff options
| author | Eli Zaretskii | 2012-10-19 12:05:09 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-10-19 12:05:09 +0200 |
| commit | c052c554b44b809e672370e498dd3957494126d8 (patch) | |
| tree | 3886d688cf3f827cd9786160b035f1ea8facc5f8 /src | |
| parent | fb0104dabe260892805790f36df7d5968ee1f53d (diff) | |
| download | emacs-c052c554b44b809e672370e498dd3957494126d8.tar.gz emacs-c052c554b44b809e672370e498dd3957494126d8.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/puresize.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cf7302914ab..cef1edff87d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-10-19 Eli Zaretskii <eliz@gnu.org> | 1 | 2012-10-19 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * puresize.h (BASE_PURESIZE): Bump the base value to 1700000. See | ||
| 4 | http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html | ||
| 5 | for the reasons. | ||
| 6 | |||
| 3 | * alloc.c (NSTATICS): Decrease to 0x800. | 7 | * alloc.c (NSTATICS): Decrease to 0x800. |
| 4 | 8 | ||
| 5 | 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca> | 9 | 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca> |
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 <http://www.gnu.org/licenses/>. */ | |||
| 40 | #endif | 40 | #endif |
| 41 | 41 | ||
| 42 | #ifndef BASE_PURESIZE | 42 | #ifndef BASE_PURESIZE |
| 43 | #define BASE_PURESIZE (1620000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) | 43 | #define BASE_PURESIZE (1700000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) |
| 44 | #endif | 44 | #endif |
| 45 | 45 | ||
| 46 | /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ | 46 | /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ |