From: Stefan Monnier Date: Sun, 6 Jul 2003 19:30:10 +0000 (+0000) Subject: (mark_byte_stack): Update calls to mark_object. X-Git-Tag: ttn-vms-21-2-B4~9473 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fcfee3c42ea97f6351cf3a9d33c41e30beb60225;p=emacs.git (mark_byte_stack): Update calls to mark_object. --- 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); } }