diff options
| author | Karl Heuer | 1994-01-29 02:03:55 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-01-29 02:03:55 +0000 |
| commit | 0237d897f69afea78cca68c3d36b34818d8209ac (patch) | |
| tree | d40428d63145354b000bc525f6e661e28b1ec12a /src/buffer.c | |
| parent | 0fef40c0990d6f24d290f08f0ed112e28b3ecc0b (diff) | |
| download | emacs-0237d897f69afea78cca68c3d36b34818d8209ac.tar.gz emacs-0237d897f69afea78cca68c3d36b34818d8209ac.zip | |
(kill-all-local-variables): follow symbol forwarding.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 93c707ba8d1..f69007c9d96 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1212,7 +1212,8 @@ a non-nil `permanent-local' property are not eliminated by this function.") | |||
| 1212 | it is currently set up for. This is so that, if the | 1212 | it is currently set up for. This is so that, if the |
| 1213 | local is marked permanent, and we make it local again below, | 1213 | local is marked permanent, and we make it local again below, |
| 1214 | we don't lose the value. */ | 1214 | we don't lose the value. */ |
| 1215 | XCONS (XCONS (tem)->car)->cdr = XCONS (XSYMBOL (sym)->value)->car; | 1215 | XCONS (XCONS (tem)->car)->cdr = |
| 1216 | do_symval_forwarding (XCONS (XSYMBOL (sym)->value)->car); | ||
| 1216 | /* Switch to the symbol's default-value alist entry. */ | 1217 | /* Switch to the symbol's default-value alist entry. */ |
| 1217 | XCONS (tem)->car = tem; | 1218 | XCONS (tem)->car = tem; |
| 1218 | /* Mark it as current for the current buffer. */ | 1219 | /* Mark it as current for the current buffer. */ |