mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Typo
This commit is contained in:
parent
405b5c04a7
commit
db52066d6a
@ -99,9 +99,8 @@ bool LyXVC::file_found_hook(FileName const & fn)
|
|||||||
bool LyXVC::file_not_found_hook(FileName const & fn)
|
bool LyXVC::file_not_found_hook(FileName const & fn)
|
||||||
{
|
{
|
||||||
// Check if file is under version control.
|
// Check if file is under version control.
|
||||||
// This happens if we are trying to load does not exist.
|
// This happens if we are trying to load file that does not exist.
|
||||||
// It may yet exist in the repository and so could be
|
// It may yet exist in the repository and so could be checked out.
|
||||||
// checked out.
|
|
||||||
bool foundRCS = !RCS::findFile(fn).empty();
|
bool foundRCS = !RCS::findFile(fn).empty();
|
||||||
bool foundCVS = foundRCS ? false : !CVS::findFile(fn).empty();
|
bool foundCVS = foundRCS ? false : !CVS::findFile(fn).empty();
|
||||||
bool foundSVN = (foundRCS || foundCVS) ? false : SVN::findFile(fn);
|
bool foundSVN = (foundRCS || foundCVS) ? false : SVN::findFile(fn);
|
||||||
|
Loading…
Reference in New Issue
Block a user