Fix CHECK_ALLOCATED_AND_LIVE abort during GC

* src/editfns.c (save_restriction_restore):
Wait for the GC to free the temporary markers (Bug#30931).

(cherry picked from commit 670f2ffae7)
This commit is contained in:
Paul Eggert 2018-03-29 23:00:23 -07:00 committed by Noam Postavsky
parent 71192e0b7e
commit 7460840a6c

View file

@ -3876,9 +3876,10 @@ save_restriction_restore (Lisp_Object data)
buf->clip_changed = 1; /* Remember that the narrowing changed. */
}
/* These aren't needed anymore, so don't wait for GC. */
free_marker (XCAR (data));
free_marker (XCDR (data));
/* This isnt needed anymore, so dont wait for GC.
Do not call free_marker on XCAR (data) or XCDR (data),
though, since record_marker_adjustments may have put
them on the buffers undo list (Bug#30931). */
free_cons (XCONS (data));
}
else