diff src/mem-limits.h @ 55875:65f0675acb04

(EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 01 Jun 2004 20:23:34 +0000
parents 695cf19ef79e
children a8fa7c632ee4 4c90ffeb71c5
line wrap: on
line diff
--- a/src/mem-limits.h	Tue Jun 01 05:12:23 2004 +0000
+++ b/src/mem-limits.h	Tue Jun 01 20:23:34 2004 +0000
@@ -1,5 +1,5 @@
 /* Includes for memory limit warnings.
-   Copyright (C) 1990, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+   Copyright (C) 1990, 93, 94, 95, 1996, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -81,7 +81,9 @@
 #define NULL ((POINTER) 0)
 
 extern POINTER start_of_data ();
-#ifdef DATA_SEG_BITS
+#if defined USE_LSB_TAG
+#define EXCEEDS_LISP_PTR(ptr) 0
+#elif defined DATA_SEG_BITS
 #define EXCEEDS_LISP_PTR(ptr) \
   (((EMACS_UINT) (ptr) & ~DATA_SEG_BITS) >> VALBITS)
 #else