]> git.lyx.org Git - lyx.git/blobdiff - src/LyXVC.cpp
Fixup 1d08af62: unused variable
[lyx.git] / src / LyXVC.cpp
index 1e6cb121536f562cbb288dd6f3c2272d059acedd..7e7e770b10791fc9eae0c526f1c35d1db33619e3 100644 (file)
@@ -99,9 +99,8 @@ bool LyXVC::file_found_hook(FileName const & fn)
 bool LyXVC::file_not_found_hook(FileName const & fn)
 {
        // 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.
+       // This happens if we are trying to load file that 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);