Mercurial > emacs
diff src/puresize.h @ 9572:b36d5e88cccc
*** empty log message ***
| author | Morten Welinder <terra@diku.dk> |
|---|---|
| date | Mon, 17 Oct 1994 08:42:36 +0000 |
| parents | 5617d313ea94 |
| children | 705684b6f2a4 |
line wrap: on
line diff
--- a/src/puresize.h Mon Oct 17 08:04:13 1994 +0000 +++ b/src/puresize.h Mon Oct 17 08:42:36 1994 +0000 @@ -29,11 +29,18 @@ /* First define a measure of the amount of data we have. */ +/* A system configuration file may set this to request a certain extra + amount of storage. This is a lot more update-robust that defining + BASE_PURESIZE or even PURESIZE directly. */ +#ifndef SYSTEM_PURESIZE_EXTRA +#define SYSTEM_PURESIZE_EXTRA 0 +#endif + #ifndef BASE_PURESIZE #ifdef MULTI_FRAME -#define BASE_PURESIZE 265000 +#define BASE_PURESIZE (265000 + SYSTEM_PURESIZE_EXTRA) #else -#define BASE_PURESIZE 220000 +#define BASE_PURESIZE (220000 + SYSTEM_PURESIZE_EXTRA) #endif #endif
