comparison src/puresize.h @ 3498:e34b759a7b77

Test MULTI_FRAME, not HAVE_X_WINDOWS.
author Richard M. Stallman <rms@gnu.org>
date Sat, 05 Jun 1993 17:05:17 +0000
parents b69da04da2b9
children d25e8e9b573e
comparison
equal deleted inserted replaced
3497:861699ced09d 3498:e34b759a7b77
26 Make sure to include this file after config.h, since that tells us 26 Make sure to include this file after config.h, since that tells us
27 whether we are running X windows, which tells us how much pure 27 whether we are running X windows, which tells us how much pure
28 storage to allocate. */ 28 storage to allocate. */
29 29
30 #ifndef PURESIZE 30 #ifndef PURESIZE
31 #ifdef HAVE_X_WINDOWS 31 #ifdef MULTI_FRAME
32 #define PURESIZE 200000 32 #define PURESIZE 200000
33 #else 33 #else
34 #define PURESIZE 185000 34 #define PURESIZE 185000
35 #endif 35 #endif
36 #endif 36 #endif