From 862fae8f447b6793e97f5d7982171c62bd208d02 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 27 Dec 2002 11:28:47 +0000 Subject: [PATCH] fix bug #780 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5898 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/ChangeLog | 5 +++++ src/lyx_main.C | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index ae468c28a0..5244c493a9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-12-27 Jean-Marc Lasgouttes + + * lyx_main.C (init): remove annoying error message when following + symbolic links (bug #780) + 2002-12-26 Jean-Marc Lasgouttes * text.C (insertChar): diff --git a/src/lyx_main.C b/src/lyx_main.C index 5cdbdc8d5f..0b0e0802ac 100644 --- a/src/lyx_main.C +++ b/src/lyx_main.C @@ -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; -- 2.39.2