]> git.eshelyaron.com Git - emacs.git/commitdiff
Small src/puresize.h cleanup.
authorDan Nicolaescu <dann@ics.uci.edu>
Fri, 20 Aug 2010 22:52:10 +0000 (15:52 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Fri, 20 Aug 2010 22:52:10 +0000 (15:52 -0700)
* src/puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
defined, unconditionally defined in lisp.h.

src/ChangeLog
src/puresize.h

index 2c51aeb6ce74293e808ffdadec8b5f489e03a12a..2150e4d3fac2a33b721bc171cfdaa1573187b850 100644 (file)
@@ -1,5 +1,8 @@
 2010-08-20  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
+       defined, unconditionally defined in lisp.h.
+
        * term.c: Do not include <termios.h>, systty.h does it.
 
        * s/unixware.h (HAVE_TCATTR):
index 682e892613529e79a6fd04363e3ae353d74fb910..3c7f92228a0661e22e0eff9925429691959dadf4 100644 (file)
@@ -87,7 +87,6 @@ extern EMACS_INT pure[];
   && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
 
 #else /* not VIRT_ADDR_VARIES */
-#ifdef PNTR_COMPARISON_TYPE
 /* When PNTR_COMPARISON_TYPE is not the default (unsigned int).  */
 
 extern char my_edata[];
@@ -95,14 +94,6 @@ extern char my_edata[];
 #define PURE_P(obj) \
   ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) my_edata)
 
-#else /* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */
-
-extern char my_edata[];
-
-#define PURE_P(obj) \
-  (XPNTR (obj) < (unsigned int) my_edata)
-
-#endif /* PNTR_COMPARISON_TYPE */
 #endif /* VIRT_ADDRESS_VARIES */
 
 /* arch-tag: fd9b0a91-a70e-4729-a75a-6bb4ca1ce14f