1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(STATIC_HEAP_SIZE): Increment both definitions.

This commit is contained in:
Richard M. Stallman 2005-11-03 21:12:07 +00:00
parent 225ccad65e
commit acebbab350

View File

@ -1,5 +1,5 @@
/* simulate sbrk() with an array in .bss, for unexec() support for Cygwin;
complete rewrite of xemacs Cygwin unexec() code
/* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin;
complete rewrite of xemacs Cygwin `unexec' code
Copyright (C) 2004, 2005 Free Software Foundation, Inc.
@ -27,9 +27,9 @@ Boston, MA 02110-1301, USA. */
#include <unistd.h>
#ifdef HAVE_X_WINDOWS
#define STATIC_HEAP_SIZE (7 * 1024 * 1024)
#define STATIC_HEAP_SIZE (8 * 1024 * 1024)
#else
#define STATIC_HEAP_SIZE (7 * 1024 * 1024)
#define STATIC_HEAP_SIZE (8 * 1024 * 1024)
#endif
int debug_sheap = 0;