# HG changeset patch # User Dave Love # Date 1054122131 0 # Node ID 8c0215bae09ea20b64b9e22178cb92239f1e12a9 # Parent 88e4ead2513f87e1e2daa9522ed98b88a5850f4a (unbind_to): Fix last change for K&R. From rms. diff -r 88e4ead2513f -r 8c0215bae09e src/eval.c --- 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);