diff src/eval.c @ 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 bbe405e5721e
children 695cf19ef79e
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);