changeset 908:850b2e6cfeab

Have INIDIR use the home directory on all platforms now, not just Unix and Mac.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 19 Apr 2011 08:24:52 +0000
parents 3e393a9375c4
children c092eab43ae3
files compat.h
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/compat.h	Tue Apr 19 07:55:07 2011 +0000
+++ b/compat.h	Tue Apr 19 08:24:52 2011 +0000
@@ -43,13 +43,12 @@
 #include <process.h>
 
 #define DIRSEP "\\"
-#define INIDIR "."
 #define TYPDIR "."
 #else
 #define DIRSEP "/"
-#define INIDIR "~/." __TARGET__
 #define TYPDIR "/usr/local/" __TARGET__
 #endif
+#define INIDIR "~/." __TARGET__
 
 /* OS/2 */
 #if defined(__EMX__) || defined(__OS2__)