+2003-05-28 Dave Love <fx@gnu.org>
+
+ * eval.c (unbind_to): Fix last change for K&R. From rms.
+
2003-05-28 Kim F. Storm <storm@cua.dk>
* xdisp.c (expose_window): Fix error in calculation of
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);