Small src/puresize.h cleanup.

* src/puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
defined, unconditionally defined in lisp.h.
This commit is contained in:
Dan Nicolaescu 2010-08-20 15:52:10 -07:00
parent f5817d1cb5
commit 748155880f
2 changed files with 3 additions and 9 deletions

View 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):

View 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