Mercurial > emacs
changeset 51294:8c0215bae09e
(unbind_to): Fix last change for K&R. From rms.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 28 May 2003 11:42:11 +0000 |
parents | 88e4ead2513f |
children | fd8bbce6c51f |
files | src/eval.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Wed May 28 11:35:48 2003 +0000 +++ b/src/eval.c Wed May 28 11:42:11 2003 +0000 @@ -3076,7 +3076,8 @@ the same entry again, and we copy the binding first in case more bindings are made during some of the code we run. */ - struct specbinding this_binding = *--specpdl_ptr; + struct specbinding this_binding; + this_binding = *--specpdl_ptr; if (this_binding.func != 0) (*this_binding.func) (this_binding.old_value);