From: Eli Zaretskii Date: Sat, 2 Jul 2022 09:16:33 +0000 (+0300) Subject: * src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap. X-Git-Tag: emacs-29.0.90~1447^2~1279 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=631b3fbde76040fd3545cc9f18e1b7d13b62ad62;p=emacs.git * src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap. --- diff --git a/src/sheap.h b/src/sheap.h index 297b7cf317d..9133f0b292f 100644 --- a/src/sheap.h +++ b/src/sheap.h @@ -23,7 +23,7 @@ along with GNU Emacs. If not, see . */ /* Size of the static heap. Guess a value that is probably too large, by up to a factor of four or so. Typically the unused part is not paged in and so does not cost much. */ -enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 22 }; +enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 23 }; extern char bss_sbrk_buffer[STATIC_HEAP_SIZE]; extern char *max_bss_sbrk_ptr;