]> git.lyx.org Git - features.git/blobdiff - src/LyXVC.cpp
Comments forthe current state.
[features.git] / src / LyXVC.cpp
index 63d26227a638f5b93242a5464b2aaf6aabd6e143..1ed30fe66376da1d2348ef1916c9154b41817f0a 100644 (file)
@@ -74,13 +74,13 @@ bool LyXVC::file_found_hook(FileName const & fn)
 
 bool LyXVC::file_not_found_hook(FileName const & fn)
 {
-       // Check if file is under RCS
+       // Check if file is under RCS.
+       // This happens if we are trying to load non existent
+       // file on disk, but existent in ,v version.
+       // Seems there is no reasonable scenario for adding implementation
+       // of retrieve for cvs or svn.
        if (!RCS::findFile(fn).empty())
                return true;
-       if (!CVS::findFile(fn).empty())
-               return true;
-       if (!SVN::findFile(fn).empty())
-               return true;
        return false;
 }