aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert2019-03-02 13:13:05 -0800
committerPaul Eggert2019-03-02 13:14:26 -0800
commit284f635da833d2dbf0102af3442197b46adf78c5 (patch)
tree0985ae494b56041500e13214074e4237ced04385 /src/lisp.h
parent5f99d515c921ee5546483ddab15e08f9b23280d9 (diff)
downloademacs-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.h2
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;
3769typedef uintptr_t byte_ct; /* System byte counts reported by GC. */ 3769typedef uintptr_t byte_ct; /* System byte counts reported by GC. */
3770extern byte_ct consing_since_gc; 3770extern byte_ct consing_since_gc;
3771extern byte_ct gc_relative_threshold; 3771extern byte_ct gc_relative_threshold;
3772extern byte_ct memory_full_cons_threshold; 3772extern byte_ct const memory_full_cons_threshold;
3773#ifdef HAVE_PDUMPER 3773#ifdef HAVE_PDUMPER
3774extern int number_finalizers_run; 3774extern int number_finalizers_run;
3775#endif 3775#endif