From 750af391396ee60c95e20f3cf5ac06b1804860b5 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Fri, 18 Dec 2020 15:53:45 -0500 Subject: [PATCH] Comment --- src/LyXVC.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/LyXVC.cpp b/src/LyXVC.cpp index ed0a799143..b18bcdfee3 100644 --- a/src/LyXVC.cpp +++ b/src/LyXVC.cpp @@ -98,9 +98,10 @@ bool LyXVC::file_found_hook(FileName const & fn) bool LyXVC::file_not_found_hook(FileName const & fn) { - // Check if file is under RCS. - // This happens if we are trying to load non existent - // file on disk, but existent in ,v version. + // Check if file is under version control. + // This happens if we are trying to load does not exist. + // It may yet exist in the repository and so could be + // checked out. bool foundRCS = !RCS::findFile(fn).empty(); bool foundCVS = foundRCS ? false : !CVS::findFile(fn).empty(); bool foundSVN = (foundRCS || foundCVS) ? false : !SVN::findFile(fn).empty(); -- 2.39.5