From ac6b1f816a09c514f25b26e6236cf8b82b5a777d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 8 Nov 2011 12:15:17 -0800 Subject: [PATCH] * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926). --- src/ChangeLog | 4 ++++ src/s/gnu.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 1325dd20bb2..04e58e4742f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-11-08 Paul Eggert + + * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926). + 2011-11-08 Paul Eggert Avoid some portability problems by eschewing 'extern inline' functions. diff --git a/src/s/gnu.h b/src/s/gnu.h index c40f764f8bf..b40f7b0a95b 100644 --- a/src/s/gnu.h +++ b/src/s/gnu.h @@ -44,3 +44,5 @@ along with GNU Emacs. If not, see . */ #endif /* !_IO_STDIO_H */ #endif /* emacs */ +/* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method for marking the stack. */ +#define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS -- 2.39.5