remove annoying debugging statement

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2014 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-05-21 13:07:45 +00:00
parent 113603af15
commit 9791d64b6e
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-05-21 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* filetools.C (MakeAbsPath): remove debugging statement
2001-05-16 Ruurd Reitsma <r.a.reitsma@wbmt.tudelft.nl>
* FileInfo.h: X_OK workaround for cygwin

View File

@ -558,7 +558,6 @@ string const MakeAbsPath(string const & RelPath, string const & BasePath)
// Copies given paths
string TempRel(os::slashify_path(RelPath));
lyxerr << "TempRel=" << TempRel <<endl;
// Since TempRel is NOT absolute, we can safely replace "//" with "/"
TempRel = subst(TempRel, "//", "/");