X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXVC.cpp;h=1ed30fe66376da1d2348ef1916c9154b41817f0a;hb=0129d2fad1bbc8f0017bc700ad3d5c43f5abd07b;hp=63d26227a638f5b93242a5464b2aaf6aabd6e143;hpb=bb14dc3a00a54f5c44e6d5c203f604153dfc4353;p=features.git diff --git a/src/LyXVC.cpp b/src/LyXVC.cpp index 63d26227a6..1ed30fe663 100644 --- a/src/LyXVC.cpp +++ b/src/LyXVC.cpp @@ -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; }