1
Fork 0
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:
Stefan Monnier 2003-07-06 19:30:10 +00:00
parent 9568e3d87e
commit fcfee3c42e

View file

@ -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);
}
}