lyx2lyx is the name, that is what it is

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4848 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-08-02 16:54:07 +00:00
parent 5f46df1f0f
commit b95e7efe2e
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-08-02 John Levon <levon@movementarian.org>
* buffer.C: s/lyxconvert/lyx2lyx/
2002-08-02 Angus Leeming <leeming@lyx.org>
* lyxlex.C: revert John's change as it breaks reading of the user

View File

@ -1708,10 +1708,7 @@ bool Buffer::readFile(LyXLex & lex, Paragraph * par)
"Use LyX 0.10.x to read this!"));
return false;
} else if (file_format < 220) {
//Alert::alert(_("Warning!"),
// _("Old LyX file format found. "
// "Running conversion script"));
string command = "lyxconvert "
string const command = "lyx2lyx "
+ QuoteName(filename_);
cmd_ret const ret = RunCommand(command);
if (ret.first) {