diff options
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index b579e7ed1ae..5da4290701e 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -5459,7 +5459,7 @@ purecopy_hash_table (struct Lisp_Hash_Table *table) pure->rehash_size = purecopy (table->rehash_size); pure->hash = purecopy (table->hash); pure->next = purecopy (table->next); - pure->next_free = purecopy (table->next_free); + pure->next_free = table->next_free; pure->index = purecopy (table->index); pure->count = table->count; pure->pure = table->pure; |