]> git.lyx.org Git - features.git/commitdiff
Comment.
authorRichard Kimberly Heck <rikiheck@lyx.org>
Fri, 14 Dec 2018 15:58:13 +0000 (10:58 -0500)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 12:39:51 +0000 (14:39 +0200)
src/Buffer.cpp

index eff76bf1e84653f2c868096a7054c75fb02aa9d7..b7f8b679f225933737c3e7c3c396b6d57b9aaf36 100644 (file)
@@ -2404,6 +2404,13 @@ docstring_list const & Buffer::getBibfiles(UpdateScope scope) const
        Buffer const * const pbuf = masterBuffer();
        if (pbuf != this && scope != UpdateChildOnly)
                return pbuf->getBibfiles();
+
+       // In 2.3.x, we have:
+       //if (!d->bibfile_cache_valid_)
+       //      this->updateBibfilesCache(scope);
+       // I think that is a leftover, but there have been so many back-
+       // and-forths with this, due to Windows issues, that I am not sure.
+
        return d->bibfiles_cache_;
 }