]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileName.cpp
Use more informative descriptions fro Springer layouts
[lyx.git] / src / support / FileName.cpp
index 219a9e5fd8bc3831c6ea3e379b91b0b827d2cfbe..1e3cacf172bb6408373b03e0a283f8fa3d116028 100644 (file)
@@ -668,25 +668,25 @@ bool FileName::destroyDirectory() const
 static int mymkdir(char const * pathname, unsigned long int mode)
 {
        // FIXME: why don't we have mode_t in lyx::mkdir prototype ??
-#if HAVE_MKDIR
-# if MKDIR_TAKES_ONE_ARG
+# if HAVE_MKDIR
+#  if MKDIR_TAKES_ONE_ARG
        // MinGW32
        return ::mkdir(pathname);
        // FIXME: "Permissions of created directories are ignored on this system."
-# else
+#  else
        // POSIX
        return ::mkdir(pathname, mode_t(mode));
-# endif
-#elif defined(_WIN32)
+#  endif
+# elif defined(_WIN32)
        // plain Windows 32
        return CreateDirectory(pathname, 0) != 0 ? 0 : -1;
        // FIXME: "Permissions of created directories are ignored on this system."
-#elif HAVE__MKDIR
+# elif HAVE__MKDIR
        return ::_mkdir(pathname);
        // FIXME: "Permissions of created directories are ignored on this system."
-#else
+# else
 #   error "Don't know how to create a directory on this system."
-#endif
+# endif
 }
 #endif