]> git.lyx.org Git - lyx.git/blobdiff - src/vc-backend.C
fix typo that put too many include paths for most people
[lyx.git] / src / vc-backend.C
index 23d36b25b61d83004d58a9d101507d7a9a7edeef..c4336d48e7fda94429b2f919bbf1a9fba06c9c3f 100644 (file)
@@ -28,7 +28,7 @@ using std::getline;
 int VCS::doVCCommand(string const & cmd, string const & path)
 {
        lyxerr[Debug::LYXVC] << "doVCCommand: " << cmd << endl;
-        Systemcall one;
+       Systemcall one;
        Path p(path);
        int const ret = one.startscript(Systemcall::Wait, cmd);
        return ret;
@@ -70,9 +70,9 @@ string const RCS::find_file(string const & file)
 }
 
 
-void RCS::retrive(string const & file)
+void RCS::retrieve(string const & file)
 {
-       lyxerr[Debug::LYXVC] << "LyXVC::RCS: retrive.\n\t" << file << endl;
+       lyxerr[Debug::LYXVC] << "LyXVC::RCS: retrieve.\n\t" << file << endl;
        VCS::doVCCommand("co -q -r \""
                         + file + "\"",
                         string());
@@ -129,7 +129,7 @@ void RCS::scanMaster()
                                        break;
                                }
                        } while (!contains(tmpt, ";"));
-                       
+
                } else if (token == "comment") {
                        // we don't need to read any further than this.
                        read_enough = true;
@@ -306,7 +306,7 @@ void CVS::revert()
        // Reverts to the version in CVS repository and
        // gets the updated version from the repository.
        string const fil = OnlyFilename(owner_->fileName());
-       
+
        doVCCommand("rm -f \"" + fil + "\"; cvs update \"" + fil + "\"",
                    owner_->filePath());
        owner_->markLyxClean();