aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 34238e4cd6a..3225fefc5e3 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3967,8 +3967,8 @@ sweep_weak_table (struct Lisp_Hash_Table *h, int remove_entries_p)
3967 for (idx = HASH_INDEX (h, bucket); !NILP (idx); idx = next) 3967 for (idx = HASH_INDEX (h, bucket); !NILP (idx); idx = next)
3968 { 3968 {
3969 ptrdiff_t i = XFASTINT (idx); 3969 ptrdiff_t i = XFASTINT (idx);
3970 int key_known_to_survive_p = survives_gc_p (HASH_KEY (h, i)); 3970 bool key_known_to_survive_p = survives_gc_p (HASH_KEY (h, i));
3971 int value_known_to_survive_p = survives_gc_p (HASH_VALUE (h, i)); 3971 bool value_known_to_survive_p = survives_gc_p (HASH_VALUE (h, i));
3972 int remove_p; 3972 int remove_p;
3973 3973
3974 if (EQ (h->weak, Qkey)) 3974 if (EQ (h->weak, Qkey))