aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-05-13 08:49:15 +0000
committerYAMAMOTO Mitsuharu2005-05-13 08:49:15 +0000
commit948e665681747c591f85f586992cd69c44f838f9 (patch)
treeba74890bcbd1a94f45eeafbbce9379fd2feabef2
parent58f3150e5d226dea583a79c40c84c6741d80bd2d (diff)
downloademacs-948e665681747c591f85f586992cd69c44f838f9.tar.gz
emacs-948e665681747c591f85f586992cd69c44f838f9.zip
(HAVE_ALLOCA, C_ALLOCA): Move to config.h.
-rw-r--r--mac/inc/m-mac.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/mac/inc/m-mac.h b/mac/inc/m-mac.h
index bb4011af4a6..356a557c5fa 100644
--- a/mac/inc/m-mac.h
+++ b/mac/inc/m-mac.h
@@ -80,19 +80,6 @@ Boston, MA 02111-1307, USA. */
80 80
81#define VIRT_ADDR_VARIES 81#define VIRT_ADDR_VARIES
82 82
83/* Define C_ALLOCA if this machine does not support a true alloca
84 and the one written in C should be used instead.
85 Define HAVE_ALLOCA to say that the system provides a properly
86 working alloca function and it should be used.
87 Define neither one if an assembler-language alloca
88 in the file alloca.s should be used. */
89
90#ifdef __MRC__
91#define HAVE_ALLOCA
92#else
93#define C_ALLOCA
94#endif
95
96/* Define NO_REMAP if memory segmentation makes it not work well 83/* Define NO_REMAP if memory segmentation makes it not work well
97 to change the boundary between the text section and data section 84 to change the boundary between the text section and data section
98 when Emacs is dumped. If you define this, the preloaded Lisp 85 when Emacs is dumped. If you define this, the preloaded Lisp
@@ -129,18 +116,5 @@ Boston, MA 02111-1307, USA. */
129#define IEEE_FLOATING_POINT 1 116#define IEEE_FLOATING_POINT 1
130#endif 117#endif
131 118
132#if 0
133/* The usual definition of XINT, which involves shifting, does not
134 sign-extend properly on this machine. */
135
136#define XINT(i) (((sign_extend_temp=(i)) & 0x00800000) \
137 ? (sign_extend_temp | 0xFF000000) \
138 : (sign_extend_temp & 0x00FFFFFF))
139
140#ifdef emacs /* Don't do this when making xmakefile! */
141extern int sign_extend_temp;
142#endif
143#endif
144
145/* arch-tag: 9e759031-ab7b-4c76-99d7-3ae94a98de38 119/* arch-tag: 9e759031-ab7b-4c76-99d7-3ae94a98de38
146 (do not change this comment) */ 120 (do not change this comment) */