From 631b3fbde76040fd3545cc9f18e1b7d13b62ad62 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 2 Jul 2022 12:16:33 +0300 Subject: [PATCH] * src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap. --- src/sheap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2