From: Angus Leeming Date: Sun, 16 Jan 2005 16:55:26 +0000 (+0000) Subject: Actually move the OS2-specific block to make the code more readable too. X-Git-Tag: 1.6.10~14654 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3e0abd0ad44bc86b2efe18224b77aea1eef7465e;p=features.git 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 --- diff --git a/src/support/filetools.C b/src/support/filetools.C index 72303c6d5f..e5db9d75d4 100644 --- a/src/support/filetools.C +++ b/src/support/filetools.C @@ -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