diff options
Diffstat (limited to 'src/mem-limits.h')
| -rw-r--r-- | src/mem-limits.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mem-limits.h b/src/mem-limits.h index 578cf59f12e..57a79863a1b 100644 --- a/src/mem-limits.h +++ b/src/mem-limits.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Includes for memory limit warnings. | 1 | /* Includes for memory limit warnings. |
| 2 | Copyright (C) 1990, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. | 2 | Copyright (C) 1990, 93, 94, 95, 1996, 2004 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -81,7 +81,9 @@ typedef unsigned long SIZE; | |||
| 81 | #define NULL ((POINTER) 0) | 81 | #define NULL ((POINTER) 0) |
| 82 | 82 | ||
| 83 | extern POINTER start_of_data (); | 83 | extern POINTER start_of_data (); |
| 84 | #ifdef DATA_SEG_BITS | 84 | #if defined USE_LSB_TAG |
| 85 | #define EXCEEDS_LISP_PTR(ptr) 0 | ||
| 86 | #elif defined DATA_SEG_BITS | ||
| 85 | #define EXCEEDS_LISP_PTR(ptr) \ | 87 | #define EXCEEDS_LISP_PTR(ptr) \ |
| 86 | (((EMACS_UINT) (ptr) & ~DATA_SEG_BITS) >> VALBITS) | 88 | (((EMACS_UINT) (ptr) & ~DATA_SEG_BITS) >> VALBITS) |
| 87 | #else | 89 | #else |