]> git.eshelyaron.com Git - emacs.git/commitdiff
(STATIC_HEAP_SIZE): Increment both definitions.
authorRichard M. Stallman <rms@gnu.org>
Thu, 3 Nov 2005 21:12:07 +0000 (21:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 3 Nov 2005 21:12:07 +0000 (21:12 +0000)
src/sheap.c

index 635c3dc0144ee8ec6cc742a4ab364a6f71d69113..cc740173a24bb8b53bd3323197a3ddce5c2b659b 100644 (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;