From 5647f9794b2e4770399556c7d4a4c6fc45dfb3f5 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 17 Sep 1994 00:41:40 +0000 Subject: [PATCH] (CHECK_IMPURE, all versions): Use EMACS_INT. --- src/puresize.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/puresize.h b/src/puresize.h index 0391bc380b8..3aa6e75c2dc 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -40,7 +40,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* For machines like APOLLO where text and data can go anywhere in virtual memory. */ #define CHECK_IMPURE(obj) \ - { extern int pure[]; \ + { extern EMACS_INT pure[]; \ if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) \ && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) \ pure_write_error (); } @@ -50,14 +50,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* when PNTR_COMPARISON_TYPE is not the default (unsigned int) */ #define CHECK_IMPURE(obj) \ - { extern int my_edata; \ + { extern EMACS_INT my_edata; \ if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) &my_edata) \ pure_write_error (); } #else /* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */ #define CHECK_IMPURE(obj) \ - { extern int my_edata; \ + { extern EMACS_INT my_edata; \ if (XPNTR (obj) < (unsigned int) &my_edata) \ pure_write_error (); } -- 2.39.5