VCS: do not allow to run VCS stuff in parallel with editation.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32335 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-12-04 13:38:34 +00:00
parent 11020c50f1
commit 061b55c5f4

View File

@ -44,7 +44,7 @@ int VCS::doVCCommandCall(string const & cmd, FileName const & path)
LYXERR(Debug::LYXVC, "doVCCommandCall: " << cmd);
Systemcall one;
support::PathChanger p(path);
return one.startscript(Systemcall::Wait, cmd);
return one.startscript(Systemcall::Wait, cmd, false);
}