diff options
Diffstat (limited to 'src/puresize.h')
-rw-r--r-- | src/puresize.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/puresize.h b/src/puresize.h index 0824437bdfd..4b746924bb1 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -1,5 +1,5 @@ /* How much read-only Lisp storage a dumped Emacs needs. - Copyright (C) 1993, 2001-2017 Free Software Foundation, Inc. + Copyright (C) 1993, 2001-2022 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -47,7 +47,7 @@ INLINE_HEADER_BEGIN #endif #ifndef BASE_PURESIZE -#define BASE_PURESIZE (1900000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) +#define BASE_PURESIZE (2750000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) #endif /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ @@ -77,7 +77,7 @@ INLINE_HEADER_BEGIN #define PURESIZE (BASE_PURESIZE * PURESIZE_RATIO * PURESIZE_CHECKING_RATIO) #endif -extern _Noreturn void pure_write_error (Lisp_Object); +extern AVOID pure_write_error (Lisp_Object); extern EMACS_INT pure[]; |