diff options
| author | Eli Zaretskii | 2017-11-02 18:53:20 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-11-02 18:53:20 +0200 |
| commit | 9031dec527a9feb6c3ceff95be9da98d90818afe (patch) | |
| tree | eb86c0f00f370fa6ab8a3a1f4fa5f0de3f6b90f2 | |
| parent | fdd3dcfa4eb0a4b17bb43f461a6790f68e76da41 (diff) | |
| download | emacs-9031dec527a9feb6c3ceff95be9da98d90818afe.tar.gz emacs-9031dec527a9feb6c3ceff95be9da98d90818afe.zip | |
; * src/alloc.c (sweep_symbols): Fix last change.
| -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 3f4ec168fa3..ff93956109b 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -7032,7 +7032,7 @@ sweep_symbols (void) | |||
| 7032 | between the two will be re-swept. | 7032 | between the two will be re-swept. |
| 7033 | So we have to make sure we don't re-free this blv next | 7033 | So we have to make sure we don't re-free this blv next |
| 7034 | time we sweep this symbol_block (bug#29066). */ | 7034 | time we sweep this symbol_block (bug#29066). */ |
| 7035 | sym->s.redirect == SYMBOL_PLAINVAL; | 7035 | sym->s.redirect = SYMBOL_PLAINVAL; |
| 7036 | } | 7036 | } |
| 7037 | sym->s.next = symbol_free_list; | 7037 | sym->s.next = symbol_free_list; |
| 7038 | symbol_free_list = &sym->s; | 7038 | symbol_free_list = &sym->s; |