From: Richard M. Stallman Date: Sat, 2 Sep 1995 16:18:26 +0000 (+0000) Subject: (SITELOAD_PURESIZE_EXTRA): New macro. X-Git-Tag: emacs-19.34~2874 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=64aba29c64744f55f0101067d44387f3a2e98431;p=emacs.git (SITELOAD_PURESIZE_EXTRA): New macro. (BASE_PURESIZE): Use SITELOAD_PURESIZE_EXTRA. --- diff --git a/src/puresize.h b/src/puresize.h index 219189d031f..b14543146d1 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -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