From 95966b28fb1a3f541a4f988a74005d45554536dd Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Thu, 14 Jul 2022 17:15:23 +0200 Subject: [PATCH] Prune the animation cache from gc * src/alloc.c (garbage_collect): Prune animation cache (bug#56546). --- src/alloc.c | 3 +++ 1 file changed, 3 insertions(+) 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 (); -- 2.39.5