diff options
| author | Paul Eggert | 2019-03-02 13:13:05 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-03-02 13:14:26 -0800 |
| commit | 284f635da833d2dbf0102af3442197b46adf78c5 (patch) | |
| tree | 0985ae494b56041500e13214074e4237ced04385 /src/lisp.h | |
| parent | 5f99d515c921ee5546483ddab15e08f9b23280d9 (diff) | |
| download | emacs-284f635da833d2dbf0102af3442197b46adf78c5.tar.gz emacs-284f635da833d2dbf0102af3442197b46adf78c5.zip | |
memory_full_cons_threshold is a constant
* src/alloc.c (memory_full_cons_threshold): Now const.
(memory_full): Omit no-longer-needed initialization.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 32576930b29..2a3eaf38122 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3769,7 +3769,7 @@ extern Lisp_Object zero_vector; | |||
| 3769 | typedef uintptr_t byte_ct; /* System byte counts reported by GC. */ | 3769 | typedef uintptr_t byte_ct; /* System byte counts reported by GC. */ |
| 3770 | extern byte_ct consing_since_gc; | 3770 | extern byte_ct consing_since_gc; |
| 3771 | extern byte_ct gc_relative_threshold; | 3771 | extern byte_ct gc_relative_threshold; |
| 3772 | extern byte_ct memory_full_cons_threshold; | 3772 | extern byte_ct const memory_full_cons_threshold; |
| 3773 | #ifdef HAVE_PDUMPER | 3773 | #ifdef HAVE_PDUMPER |
| 3774 | extern int number_finalizers_run; | 3774 | extern int number_finalizers_run; |
| 3775 | #endif | 3775 | #endif |