diff options
| author | Jason Rumney | 2000-11-25 19:18:49 +0000 |
|---|---|---|
| committer | Jason Rumney | 2000-11-25 19:18:49 +0000 |
| commit | 7c98e712b1c92e442b37c3fc9892fc6dd7a2460d (patch) | |
| tree | 089cf0afbac700098bd58118dc13210d7a1260e9 | |
| parent | afabdbe5992645245b87012fc1a66348714501ac (diff) | |
| download | emacs-7c98e712b1c92e442b37c3fc9892fc6dd7a2460d.tar.gz emacs-7c98e712b1c92e442b37c3fc9892fc6dd7a2460d.zip | |
Enable conservative stack marking.
| -rw-r--r-- | nt/config.nt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/nt/config.nt b/nt/config.nt index 095fb34a992..23d17986895 100644 --- a/nt/config.nt +++ b/nt/config.nt | |||
| @@ -41,7 +41,14 @@ Boston, MA 02111-1307, USA. */ | |||
| 41 | /* Define REL_ALLOC if you want to use the relocating allocator for | 41 | /* Define REL_ALLOC if you want to use the relocating allocator for |
| 42 | buffer space. */ | 42 | buffer space. */ |
| 43 | #define REL_ALLOC | 43 | #define REL_ALLOC |
| 44 | 44 | ||
| 45 | /* Enable conservative stack marking for GC. */ | ||
| 46 | #define GC_MARK_STACK 1 | ||
| 47 | |||
| 48 | /* MSVC ignores the "register" keyword, so test fails even though | ||
| 49 | setjmp does work. */ | ||
| 50 | #define GC_SETJMP_WORKS 1 | ||
| 51 | |||
| 45 | /* Define HAVE_X_WINDOWS if you want to use the X window system. */ | 52 | /* Define HAVE_X_WINDOWS if you want to use the X window system. */ |
| 46 | #undef HAVE_X_WINDOWS | 53 | #undef HAVE_X_WINDOWS |
| 47 | 54 | ||