1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

; * src/alloc.c (sweep_symbols): Fix last change.

This commit is contained in:
Eli Zaretskii 2017-11-02 18:53:20 +02:00
parent fdd3dcfa4e
commit 9031dec527

View File

@ -7032,7 +7032,7 @@ sweep_symbols (void)
between the two will be re-swept.
So we have to make sure we don't re-free this blv next
time we sweep this symbol_block (bug#29066). */
sym->s.redirect == SYMBOL_PLAINVAL;
sym->s.redirect = SYMBOL_PLAINVAL;
}
sym->s.next = symbol_free_list;
symbol_free_list = &sym->s;