]> git.lyx.org Git - lyx.git/blobdiff - src/support/rename.C
make "make distcheck" work
[lyx.git] / src / support / rename.C
index 97c4ca0562348920f7a8ccc4a5d78a6a8d5f54c5..fc9b78ebc919bf76da0d89e48aecffbcbb003af2 100644 (file)
@@ -1,12 +1,33 @@
+/**
+ * \file rename.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
+#include "support/lyxlib.h"
+
 #include <cstdio>
 
-#include "support/lyxlib.h"
 
-bool lyx::rename(string const & from, string const & to)
+using std::string;
+
+
+bool lyx::support::rename(string const & from, string const & to)
 {
+#ifdef __EMX__
+       unlink(to);
+#endif
        if (::rename(from.c_str(), to.c_str()) == -1)
-               return lyx::copy(from, to);
+               if (copy(from, to)) {
+                       unlink(from);
+                       return true;
+               } else
+                       return false;
        return true;
 }