From: Lars Ingebrigtsen Date: Thu, 14 Jul 2022 15:15:23 +0000 (+0200) Subject: Prune the animation cache from gc X-Git-Tag: emacs-29.0.90~1447^2~936 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=95966b28fb1a3f541a4f988a74005d45554536dd;p=emacs.git Prune the animation cache from gc * src/alloc.c (garbage_collect): Prune animation cache (bug#56546). --- diff --git a/src/alloc.c b/src/alloc.c index f115a3cebaa..69fee0d6002 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -6266,6 +6266,9 @@ garbage_collect (void) /* GC is complete: now we can run our finalizer callbacks. */ run_finalizers (&doomed_finalizers); + /* Eject unused image cache entries. */ + image_prune_animation_caches (false); + if (!NILP (Vpost_gc_hook)) { specpdl_ref gc_count = inhibit_garbage_collection ();