mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 14:30:43 -08:00
(mark_byte_stack): Update calls to mark_object.
This commit is contained in:
parent
9568e3d87e
commit
fcfee3c42e
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue