Fix bug #17255 with insufficient pure space on 32-bit Posix builds.

src/puresize.h (BASE_PURESIZE): Bump by 1K.
This commit is contained in:
Eli Zaretskii 2014-04-13 10:33:15 +03:00
parent 0bf20677bd
commit ff252be0a8
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2014-04-13 Eli Zaretskii <eliz@gnu.org>
* puresize.h (BASE_PURESIZE): Bump by 1K. (Bug#17255)
2014-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
* bytecode.c (exec_byte_code): Rework the volatiles. Most importantly,

View file

@ -40,7 +40,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#endif
#ifndef BASE_PURESIZE
#define BASE_PURESIZE (1700000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
#define BASE_PURESIZE (1701000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
#endif
/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */