aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-09-02 16:18:26 +0000
committerRichard M. Stallman1995-09-02 16:18:26 +0000
commit64aba29c64744f55f0101067d44387f3a2e98431 (patch)
treea38bad7cdafc9c888ee25ae95ce72fdac05af647 /src
parentadc6741c3f1c5c187770879975115848878201b5 (diff)
downloademacs-64aba29c64744f55f0101067d44387f3a2e98431.tar.gz
emacs-64aba29c64744f55f0101067d44387f3a2e98431.zip
(SITELOAD_PURESIZE_EXTRA): New macro.
(BASE_PURESIZE): Use SITELOAD_PURESIZE_EXTRA.
Diffstat (limited to 'src')
-rw-r--r--src/puresize.h8
1 files changed, 6 insertions, 2 deletions
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. */
36#define SYSTEM_PURESIZE_EXTRA 0 36#define SYSTEM_PURESIZE_EXTRA 0
37#endif 37#endif
38 38
39#ifndef SITELOAD_PURESIZE_EXTRA
40#define SITELOAD_PURESIZE_EXTRA 0
41#endif
42
39#ifndef BASE_PURESIZE 43#ifndef BASE_PURESIZE
40#ifdef MULTI_FRAME 44#ifdef MULTI_FRAME
41#define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA) 45#define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
42#else 46#else
43#define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA) 47#define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
44#endif 48#endif
45#endif 49#endif
46 50