diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index f8482c351c5..a482493fac7 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1631,7 +1631,7 @@ with SIGHUP. */) | |||
| 1631 | 1631 | ||
| 1632 | /* Reset the local variables, so that this buffer's local values | 1632 | /* Reset the local variables, so that this buffer's local values |
| 1633 | won't be protected from GC. They would be protected | 1633 | won't be protected from GC. They would be protected |
| 1634 | if they happened to remain encached in their symbols. | 1634 | if they happened to remain cached in their symbols. |
| 1635 | This gets rid of them for certain. */ | 1635 | This gets rid of them for certain. */ |
| 1636 | swap_out_buffer_local_variables (b); | 1636 | swap_out_buffer_local_variables (b); |
| 1637 | reset_buffer_local_variables (b, 1); | 1637 | reset_buffer_local_variables (b, 1); |
| @@ -2486,7 +2486,7 @@ swap_out_buffer_local_variables (struct buffer *b) | |||
| 2486 | Lisp_Object sym = XCAR (XCAR (alist)); | 2486 | Lisp_Object sym = XCAR (XCAR (alist)); |
| 2487 | eassert (XSYMBOL (sym)->redirect == SYMBOL_LOCALIZED); | 2487 | eassert (XSYMBOL (sym)->redirect == SYMBOL_LOCALIZED); |
| 2488 | /* Need not do anything if some other buffer's binding is | 2488 | /* Need not do anything if some other buffer's binding is |
| 2489 | now encached. */ | 2489 | now cached. */ |
| 2490 | if (EQ (SYMBOL_BLV (XSYMBOL (sym))->where, buffer)) | 2490 | if (EQ (SYMBOL_BLV (XSYMBOL (sym))->where, buffer)) |
| 2491 | { | 2491 | { |
| 2492 | /* Symbol is set up for this buffer's old local value: | 2492 | /* Symbol is set up for this buffer's old local value: |