diff options
| author | Kim F. Storm | 2004-09-14 20:53:18 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-09-14 20:53:18 +0000 |
| commit | 1b0338f79465c40fb01621a8b83167d6c8de32f0 (patch) | |
| tree | df1084ed53c18b232e8130a2870c8164b5f6d3ab | |
| parent | a25fe164fdb75d05e67504ef1b6218212c101dad (diff) | |
| download | emacs-1b0338f79465c40fb01621a8b83167d6c8de32f0.tar.gz emacs-1b0338f79465c40fb01621a8b83167d6c8de32f0.zip | |
(PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
| -rw-r--r-- | src/puresize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/puresize.h b/src/puresize.h index 8088a374765..054b2bc4c89 100644 --- a/src/puresize.h +++ b/src/puresize.h | |||
| @@ -47,7 +47,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 47 | 47 | ||
| 48 | /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ | 48 | /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ |
| 49 | #ifndef PURESIZE_RATIO | 49 | #ifndef PURESIZE_RATIO |
| 50 | #if VALBITS + GCTYPEBITS + 1 > 32 | 50 | #if BITS_PER_EMACS_INT > 32 |
| 51 | #define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */ | 51 | #define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */ |
| 52 | #else | 52 | #else |
| 53 | #define PURESIZE_RATIO 1 | 53 | #define PURESIZE_RATIO 1 |