diff options
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2007-08-01 21:43:46 +0000 |
---|---|---|
committer | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2007-08-01 21:43:46 +0000 |
commit | ec96293f2d44298b54a84f308a3d5d735701f122 (patch) | |
tree | 4c4ec407bb3ec34dd2c50bc8bd051b6aac3b3505 /src/mac.c | |
parent | 1a1c4e2ebf7194e66278312690072d2601b23145 (diff) | |
download | emacs-ec96293f2d44298b54a84f308a3d5d735701f122.tar.gz |
Adjust load-path
Diffstat (limited to 'src/mac.c')
-rw-r--r-- | src/mac.c | 6 |
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') |