git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5898 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-12-27 11:28:47 +00:00
parent 737c9af407
commit 862fae8f44
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-12-27 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lyx_main.C (init): remove annoying error message when following
symbolic links (bug #780)
2002-12-26 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* text.C (insertChar):

View File

@ -294,8 +294,8 @@ void LyX::init(bool gui)
FileInfo file(fullbinpath, true);
followlink = file.isLink();
if (followlink) {
lyxerr << " directory " << fullbinpath
<< " is a link" << endl;
lyxerr[Debug::INIT] << " directory " << fullbinpath
<< " is a link" << endl;
string link;
if (LyXReadLink(fullbinpath, link, true)) {
fullbinpath = link;