diff options
| author | Eli Zaretskii | 2014-04-13 10:33:15 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-04-13 10:33:15 +0300 |
| commit | ff252be0a8c1955801061d071d6c537ab46e53d8 (patch) | |
| tree | b967f1c14e8199501612a948fcc5018259418393 | |
| parent | 0bf20677bdfd65199c77197871cc63da68f3798c (diff) | |
| download | emacs-ff252be0a8c1955801061d071d6c537ab46e53d8.tar.gz emacs-ff252be0a8c1955801061d071d6c537ab46e53d8.zip | |
Fix bug #17255 with insufficient pure space on 32-bit Posix builds.
src/puresize.h (BASE_PURESIZE): Bump by 1K.
| -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 e07e900b27d..2deeb61b95c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-04-13 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * puresize.h (BASE_PURESIZE): Bump by 1K. (Bug#17255) | ||
| 4 | |||
| 1 | 2014-04-13 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2014-04-13 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * bytecode.c (exec_byte_code): Rework the volatiles. Most importantly, | 7 | * bytecode.c (exec_byte_code): Rework the volatiles. Most importantly, |
diff --git a/src/puresize.h b/src/puresize.h index 0ee29d803b4..1371fb3cea2 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 (1700000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) | 43 | #define BASE_PURESIZE (1701000 + 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. */ |