aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn2002-07-24 02:07:41 +0000
committerKen Raeburn2002-07-24 02:07:41 +0000
commitbe3abfa2c38bd953c91aceb14127d64379b05b5c (patch)
treeb5b6f282c5bdb0ffe35cf0a5568649d3a435ddc7
parentf456a2bcff2c242f113e1b243ec188d19c5155b1 (diff)
downloademacs-be3abfa2c38bd953c91aceb14127d64379b05b5c.tar.gz
emacs-be3abfa2c38bd953c91aceb14127d64379b05b5c.zip
(start_of_data): Don't define the function if a macro
form has been defined.
-rw-r--r--src/ChangeLog15
-rw-r--r--src/sysdep.c2
2 files changed, 17 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9922f2a3c4e..13f0fd48da5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,18 @@
12002-07-23 Ken Raeburn <raeburn@gnu.org>
2
3 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
4 since it only depends on XUINT.
5
6 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
7 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
8 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
9 Macros deleted.
10
11 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
12 its value over other approaches.
13 * sysdep.c (start_of_data): Don't define the function if a macro
14 form has been defined.
15
12002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de> 162002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
2 17
3 * xdisp.c (redisplay_updating_p): New variable. 18 * xdisp.c (redisplay_updating_p): New variable.
diff --git a/src/sysdep.c b/src/sysdep.c
index 6eb079075e7..206ecca427a 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2237,6 +2237,7 @@ start_of_text ()
2237 * 2237 *
2238 */ 2238 */
2239 2239
2240#ifndef start_of_data
2240char * 2241char *
2241start_of_data () 2242start_of_data ()
2242{ 2243{
@@ -2259,6 +2260,7 @@ start_of_data ()
2259#endif /* ORDINARY_LINK */ 2260#endif /* ORDINARY_LINK */
2260#endif /* DATA_START */ 2261#endif /* DATA_START */
2261} 2262}
2263#endif /* start_of_data */
2262#endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */ 2264#endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
2263 2265
2264/* init_system_name sets up the string for the Lisp function 2266/* init_system_name sets up the string for the Lisp function