Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ba3fb063
Commit
ba3fb063
authored
May 01, 2003
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fbyte_code) <unwind-protect>: Use Fprogn rather than 0 and Qnil.
parent
ee070873
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/bytecode.c
src/bytecode.c
+1
-2
No files found.
src/bytecode.c
View file @
ba3fb063
...
@@ -877,9 +877,8 @@ If the third argument is incorrect, Emacs may crash. */)
...
@@ -877,9 +877,8 @@ If the third argument is incorrect, Emacs may crash. */)
case
Bunwind_protect
:
case
Bunwind_protect
:
/* The function record_unwind_protect can GC. */
/* The function record_unwind_protect can GC. */
BEFORE_POTENTIAL_GC
();
BEFORE_POTENTIAL_GC
();
record_unwind_protect
(
0
,
POP
);
record_unwind_protect
(
Fprogn
,
POP
);
AFTER_POTENTIAL_GC
();
AFTER_POTENTIAL_GC
();
(
specpdl_ptr
-
1
)
->
symbol
=
Qnil
;
break
;
break
;
case
Bcondition_case
:
case
Bcondition_case
:
...
...
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