Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
45f266dc
Commit
45f266dc
authored
May 28, 2003
by
Dave Love
Browse files
(unbind_to): Fix last change for K&R. From rms.
parent
a730d07b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/eval.c
src/eval.c
+2
-1
No files found.
src/ChangeLog
View file @
45f266dc
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
...
...
src/eval.c
View file @
45f266dc
...
...
@@ -3076,7 +3076,8 @@ unbind_to (count, value)
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment