From: Juergen Spitzmueller Date: Mon, 31 Dec 2018 08:46:08 +0000 (+0100) Subject: Remove *.bbl and friends when invalidating the bib info cache X-Git-Tag: 2.3.3~73 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=19b12518fe7014cb78b835d957d59948ca678d0a;p=features.git Remove *.bbl and friends when invalidating the bib info cache This avoids errors when switching engines. The fix is already in master. We forgot to backport. --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 35418a4537..b215d1b79c 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -2386,6 +2386,7 @@ void Buffer::invalidateBibinfoCache() const { d->bibinfo_cache_valid_ = false; d->cite_labels_valid_ = false; + removeBiblioTempFiles(); // also invalidate the cache for the parent buffer Buffer const * const pbuf = d->parent(); if (pbuf)