Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e494eee5
Commit
e494eee5
authored
Aug 26, 2002
by
Miles Bader
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fbyte_code): Fsub1 can GC, so protect it.
parent
1ced831d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/bytecode.c
src/bytecode.c
+6
-2
No files found.
src/bytecode.c
View file @
e494eee5
/* Execution of byte code produced by bytecomp.el.
Copyright (C) 1985, 1986, 1987, 1988, 1993, 2000, 2001
Copyright (C) 1985, 1986, 1987, 1988, 1993, 2000, 2001
, 2002
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -1125,7 +1125,11 @@ If the third argument is incorrect, Emacs may crash. */)
TOP
=
v1
;
}
else
TOP
=
Fsub1
(
v1
);
{
BEFORE_POTENTIAL_GC
();
TOP
=
Fsub1
(
v1
);
AFTER_POTENTIAL_GC
();
}
break
;
}
...
...
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