1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-13 09:32:47 +00: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;