summaryrefslogtreecommitdiff
path: root/src/mac.c
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2007-08-01 21:43:46 +0000
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2007-08-01 21:43:46 +0000
commitec96293f2d44298b54a84f308a3d5d735701f122 (patch)
tree4c4ec407bb3ec34dd2c50bc8bd051b6aac3b3505 /src/mac.c
parent1a1c4e2ebf7194e66278312690072d2601b23145 (diff)
downloademacs-ec96293f2d44298b54a84f308a3d5d735701f122.tar.gz
Adjust load-path
Diffstat (limited to 'src/mac.c')
-rw-r--r--src/mac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mac.c b/src/mac.c
index 0321e8f2ae1..7f22c19936b 100644
--- a/src/mac.c
+++ b/src/mac.c
@@ -5331,12 +5331,12 @@ init_mac_osx_environment ()
q[0] = '\0';
strcpy (p, app_bundle_pathname);
- strcat (p, "/Contents/Resources/lisp");
+ strcat (p, "/Contents/Resources/site-lisp");
if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
strcat (q, p);
strcpy (p, app_bundle_pathname);
- strcat (p, "/Contents/Resources/leim");
+ strcat (p, "/Contents/Resources/lisp");
if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
{
if (q[0] != '\0')
@@ -5345,7 +5345,7 @@ init_mac_osx_environment ()
}
strcpy (p, app_bundle_pathname);
- strcat (p, "/Contents/Resources/site-lisp");
+ strcat (p, "/Contents/Resources/leim");
if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
{
if (q[0] != '\0')