mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-10 09:12:15 +00:00
(SITELOAD_PURESIZE_EXTRA): New macro.
(BASE_PURESIZE): Use SITELOAD_PURESIZE_EXTRA.
This commit is contained in:
parent
adc6741c3f
commit
64aba29c64
@ -36,11 +36,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
#define SYSTEM_PURESIZE_EXTRA 0
|
||||
#endif
|
||||
|
||||
#ifndef SITELOAD_PURESIZE_EXTRA
|
||||
#define SITELOAD_PURESIZE_EXTRA 0
|
||||
#endif
|
||||
|
||||
#ifndef BASE_PURESIZE
|
||||
#ifdef MULTI_FRAME
|
||||
#define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA)
|
||||
#define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
|
||||
#else
|
||||
#define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA)
|
||||
#define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user