# HG changeset patch # User YAMAMOTO Mitsuharu # Date 1115974155 0 # Node ID 16f151cde2f603937fd16f9c2f23f7e71ce04940 # Parent cb2910e175ffff931ae2251b3bf923007d1e0119 (HAVE_ALLOCA, C_ALLOCA): Move to config.h. diff -r cb2910e175ff -r 16f151cde2f6 mac/inc/m-mac.h --- a/mac/inc/m-mac.h Fri May 13 08:48:45 2005 +0000 +++ b/mac/inc/m-mac.h Fri May 13 08:49:15 2005 +0000 @@ -80,19 +80,6 @@ #define VIRT_ADDR_VARIES -/* Define C_ALLOCA if this machine does not support a true alloca - and the one written in C should be used instead. - Define HAVE_ALLOCA to say that the system provides a properly - working alloca function and it should be used. - Define neither one if an assembler-language alloca - in the file alloca.s should be used. */ - -#ifdef __MRC__ -#define HAVE_ALLOCA -#else -#define C_ALLOCA -#endif - /* Define NO_REMAP if memory segmentation makes it not work well to change the boundary between the text section and data section when Emacs is dumped. If you define this, the preloaded Lisp @@ -129,18 +116,5 @@ #define IEEE_FLOATING_POINT 1 #endif -#if 0 -/* The usual definition of XINT, which involves shifting, does not - sign-extend properly on this machine. */ - -#define XINT(i) (((sign_extend_temp=(i)) & 0x00800000) \ - ? (sign_extend_temp | 0xFF000000) \ - : (sign_extend_temp & 0x00FFFFFF)) - -#ifdef emacs /* Don't do this when making xmakefile! */ -extern int sign_extend_temp; -#endif -#endif - /* arch-tag: 9e759031-ab7b-4c76-99d7-3ae94a98de38 (do not change this comment) */