diff options
| author | Jason Rumney | 2000-10-20 18:45:17 +0000 |
|---|---|---|
| committer | Jason Rumney | 2000-10-20 18:45:17 +0000 |
| commit | 8b30ba1a4db7efc7d591eb41b077ba5f31f63048 (patch) | |
| tree | 2b482826beb12970ddceff71c6a0b622cf293eae /src | |
| parent | d9506268c73eb324149e0ec17a88af207316bb4c (diff) | |
| download | emacs-8b30ba1a4db7efc7d591eb41b077ba5f31f63048.tar.gz emacs-8b30ba1a4db7efc7d591eb41b077ba5f31f63048.zip | |
Move #ifdef GC_MARK_STACK back above mem_init where it used to be. mem_z etc not defined
otherwise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 74ac7845cea..56b0d6fd16d 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -2530,6 +2530,7 @@ make_event_array (nargs, args) | |||
| 2530 | C Stack Marking | 2530 | C Stack Marking |
| 2531 | ************************************************************************/ | 2531 | ************************************************************************/ |
| 2532 | 2532 | ||
| 2533 | #if GC_MARK_STACK | ||
| 2533 | /* Initialize this part of alloc.c. */ | 2534 | /* Initialize this part of alloc.c. */ |
| 2534 | 2535 | ||
| 2535 | static void | 2536 | static void |
| @@ -3073,8 +3074,6 @@ live_buffer_p (m, p) | |||
| 3073 | && !NILP (((struct buffer *) p)->name)); | 3074 | && !NILP (((struct buffer *) p)->name)); |
| 3074 | } | 3075 | } |
| 3075 | 3076 | ||
| 3076 | #if GC_MARK_STACK | ||
| 3077 | |||
| 3078 | #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES | 3077 | #if GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES |
| 3079 | 3078 | ||
| 3080 | /* Array of objects that are kept alive because the C stack contains | 3079 | /* Array of objects that are kept alive because the C stack contains |