diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-09-02 16:18:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-09-02 16:18:26 +0000 |
commit | 07fc727b54335816bf1b1a58b24ff28b6a7c4e73 (patch) | |
tree | f1cfa58978187e30c4a3d100f39dc3e65c64c60d | |
parent | e64ce28ba1077a90cb93956e77d775ac41c618b0 (diff) | |
download | emacs-07fc727b54335816bf1b1a58b24ff28b6a7c4e73.tar.gz |
(SITELOAD_PURESIZE_EXTRA): New macro.
(BASE_PURESIZE): Use SITELOAD_PURESIZE_EXTRA.
-rw-r--r-- | src/puresize.h | 8 |
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. */ #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 |