diff options
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); |