diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index ff93bf57c26..022782504f1 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -7266,7 +7266,7 @@ init_alloc_once (void) | |||
| 7266 | { | 7266 | { |
| 7267 | /* Even though Qt's contents are not set up, its address is known. */ | 7267 | /* Even though Qt's contents are not set up, its address is known. */ |
| 7268 | Vpurify_flag = Qt; | 7268 | Vpurify_flag = Qt; |
| 7269 | gc_precise_p = (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE); | 7269 | gc_precise = (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE); |
| 7270 | 7270 | ||
| 7271 | purebeg = PUREBEG; | 7271 | purebeg = PUREBEG; |
| 7272 | pure_size = PURESIZE; | 7272 | pure_size = PURESIZE; |
| @@ -7410,9 +7410,10 @@ The time is in seconds as a floating point value. */); | |||
| 7410 | DEFVAR_INT ("gcs-done", gcs_done, | 7410 | DEFVAR_INT ("gcs-done", gcs_done, |
| 7411 | doc: /* Accumulated number of garbage collections done. */); | 7411 | doc: /* Accumulated number of garbage collections done. */); |
| 7412 | 7412 | ||
| 7413 | DEFVAR_BOOL ("gc-precise-p", gc_precise_p, | 7413 | DEFVAR_BOOL ("gc-precise", gc_precise, |
| 7414 | doc: /* Non-nil means GC stack marking is precise. | 7414 | doc: /* Non-nil means GC stack marking is precise. |
| 7415 | Useful mainly for automated GC tests. Build time constant.*/); | 7415 | Useful mainly for automated GC tests. Build time constant.*/); |
| 7416 | XSYMBOL (intern_c_string ("gc-precise"))->constant = 1; | ||
| 7416 | 7417 | ||
| 7417 | defsubr (&Scons); | 7418 | defsubr (&Scons); |
| 7418 | defsubr (&Slist); | 7419 | defsubr (&Slist); |