aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/eval.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 63e5b1a9736..f4fd23efbc7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12003-05-28 Dave Love <fx@gnu.org>
2
3 * eval.c (unbind_to): Fix last change for K&R. From rms.
4
12003-05-28 Kim F. Storm <storm@cua.dk> 52003-05-28 Kim F. Storm <storm@cua.dk>
2 6
3 * xdisp.c (expose_window): Fix error in calculation of 7 * xdisp.c (expose_window): Fix error in calculation of
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);