]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap.
authorEli Zaretskii <eliz@gnu.org>
Sat, 2 Jul 2022 09:16:33 +0000 (12:16 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 2 Jul 2022 09:16:33 +0000 (12:16 +0300)
src/sheap.h

index 297b7cf317dda5dc430451da0ff5f00fe9c49b3c..9133f0b292fb72dce358ab125139a07a406dd58d 100644 (file)
@@ -23,7 +23,7 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 /* 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;