diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-07-06 19:30:10 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-07-06 19:30:10 +0000 |
commit | fcfee3c42ea97f6351cf3a9d33c41e30beb60225 (patch) | |
tree | ee3f60c8a35e9c4b5a34a2d3cbed3133a78d06e3 /src/bytecode.c | |
parent | 9568e3d87ef915b3546c99eca27f37fe39aabb06 (diff) | |
download | emacs-fcfee3c42ea97f6351cf3a9d33c41e30beb60225.tar.gz |
(mark_byte_stack): Update calls to mark_object.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r-- | src/bytecode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 881834367ab..141f5adda84 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -292,19 +292,19 @@ mark_byte_stack () for (obj = stack->bottom; obj <= stack->top; ++obj) if (!XMARKBIT (*obj)) { - mark_object (obj); + mark_object (*obj); XMARK (*obj); } if (!XMARKBIT (stack->byte_string)) { - mark_object (&stack->byte_string); + mark_object (stack->byte_string); XMARK (stack->byte_string); } if (!XMARKBIT (stack->constants)) { - mark_object (&stack->constants); + mark_object (stack->constants); XMARK (stack->constants); } } |