Actually move the OS2-specific block to make the code more readable too.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9483 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-01-16 16:55:26 +00:00
parent 555bd9e4d8
commit 3e0abd0ad4

View File

@ -581,19 +581,16 @@ string const createLyXTmpDir(string const & deflt)
{
if (!deflt.empty() && deflt != "/tmp") {
if (mkdir(deflt, 0777)) {
#ifdef __EMX__
Path p(user_lyxdir());
#endif
if (IsDirWriteable(deflt)) {
// deflt could not be created because it
// did exist already, so let's create our own
// dir inside deflt.
#ifdef __EMX__
Path p(user_lyxdir());
#endif
return createTmpDir(deflt, "lyx_tmpdir");
} else {
// some other error occured.
#ifdef __EMX__
Path p(user_lyxdir());
#endif
return createTmpDir("/tmp", "lyx_tmpdir");
}
} else