1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-15 07:41:09 -08:00

* Reduce stack depth while marking native compiled subrs

This commit is contained in:
Andrea Corallo 2020-02-29 11:05:46 +00:00
parent 6664f98821
commit 62384df265

View file

@ -6683,7 +6683,9 @@ mark_object (Lisp_Object arg)
{
set_vector_marked (ptr);
struct Lisp_Subr *subr = XSUBR (obj);
mark_object (subr->native_comp_u[0]);
obj = subr->native_comp_u[0];
eassert (obj);
goto loop;
}
break;