aboutsummaryrefslogtreecommitdiffstats
path: root/src/mac.c
diff options
context:
space:
mode:
authorVinicius Jose Latorre2007-08-01 21:43:11 +0000
committerVinicius Jose Latorre2007-08-01 21:43:11 +0000
commitcdf5c17ae8c53ab4c9f51dea78df080001ae1fe2 (patch)
tree43187c5fc734d3265b03f7dafd5201495b72fadd /src/mac.c
parenta466449c4f77dea61a46132ad4087c7432a421be (diff)
downloademacs-cdf5c17ae8c53ab4c9f51dea78df080001ae1fe2.tar.gz
emacs-cdf5c17ae8c53ab4c9f51dea78df080001ae1fe2.zip
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 a64c3d208e3..ba0650c6051 100644
--- a/src/mac.c
+++ b/src/mac.c
@@ -5327,12 +5327,12 @@ init_mac_osx_environment ()
5327 q[0] = '\0'; 5327 q[0] = '\0';
5328 5328
5329 strcpy (p, app_bundle_pathname); 5329 strcpy (p, app_bundle_pathname);
5330 strcat (p, "/Contents/Resources/lisp"); 5330 strcat (p, "/Contents/Resources/site-lisp");
5331 if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) 5331 if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
5332 strcat (q, p); 5332 strcat (q, p);
5333 5333
5334 strcpy (p, app_bundle_pathname); 5334 strcpy (p, app_bundle_pathname);
5335 strcat (p, "/Contents/Resources/leim"); 5335 strcat (p, "/Contents/Resources/lisp");
5336 if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) 5336 if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
5337 { 5337 {
5338 if (q[0] != '\0') 5338 if (q[0] != '\0')
@@ -5341,7 +5341,7 @@ init_mac_osx_environment ()
5341 } 5341 }
5342 5342
5343 strcpy (p, app_bundle_pathname); 5343 strcpy (p, app_bundle_pathname);
5344 strcat (p, "/Contents/Resources/site-lisp"); 5344 strcat (p, "/Contents/Resources/leim");
5345 if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) 5345 if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
5346 { 5346 {
5347 if (q[0] != '\0') 5347 if (q[0] != '\0')