diff options
| author | Dave Love | 2003-05-28 11:42:21 +0000 |
|---|---|---|
| committer | Dave Love | 2003-05-28 11:42:21 +0000 |
| commit | 45f266dcb548c1e57a3132347329f2b56cd17f43 (patch) | |
| tree | 062563d7de0703fbeb47b8c5158df3532f6f13af /src/eval.c | |
| parent | a730d07b4fa1721a3082aea72ea1b5a6d0cf3e4e (diff) | |
| download | emacs-45f266dcb548c1e57a3132347329f2b56cd17f43.tar.gz emacs-45f266dcb548c1e57a3132347329f2b56cd17f43.zip | |
(unbind_to): Fix last change for K&R. From rms.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index cb8bd9d0ffe..5061cbc7667 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -3076,7 +3076,8 @@ unbind_to (count, value) | |||
| 3076 | the same entry again, and we copy the binding first | 3076 | the same entry again, and we copy the binding first |
| 3077 | in case more bindings are made during some of the code we run. */ | 3077 | in case more bindings are made during some of the code we run. */ |
| 3078 | 3078 | ||
| 3079 | struct specbinding this_binding = *--specpdl_ptr; | 3079 | struct specbinding this_binding; |
| 3080 | this_binding = *--specpdl_ptr; | ||
| 3080 | 3081 | ||
| 3081 | if (this_binding.func != 0) | 3082 | if (this_binding.func != 0) |
| 3082 | (*this_binding.func) (this_binding.old_value); | 3083 | (*this_binding.func) (this_binding.old_value); |