]> git.lyx.org Git - features.git/commitdiff
remove annoying debugging statement
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 21 May 2001 13:07:45 +0000 (13:07 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 21 May 2001 13:07:45 +0000 (13:07 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2014 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/ChangeLog
src/support/filetools.C

index 0b8f11cd5f602fe8d403c876ad212c09e5a175db..6a16d67cdb6faefab1754f5fba5d35065f7be892 100644 (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
index 366f57097de7fd49c40455f156e681acb82f5bba..578bca69ffbf3d6119f627fd968a7cdd8a08c9e3 100644 (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, "//", "/");