diff options
| author | Vinicius Jose Latorre | 2007-08-01 21:43:46 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2007-08-01 21:43:46 +0000 |
| commit | ec96293f2d44298b54a84f308a3d5d735701f122 (patch) | |
| tree | 4c4ec407bb3ec34dd2c50bc8bd051b6aac3b3505 /src | |
| parent | 1a1c4e2ebf7194e66278312690072d2601b23145 (diff) | |
| download | emacs-ec96293f2d44298b54a84f308a3d5d735701f122.tar.gz emacs-ec96293f2d44298b54a84f308a3d5d735701f122.zip | |
Adjust load-path
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/mac.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 835379d9cde..4a175882a98 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-08-01 Seiji Zenitani <zenitani@mac.com> | ||
| 2 | |||
| 3 | * mac.c (init_mac_osx_environment): Adjust load-path on self-contained | ||
| 4 | build. | ||
| 5 | |||
| 1 | 2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400. | 8 | * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400. |
| @@ -5331,12 +5331,12 @@ init_mac_osx_environment () | |||
| 5331 | q[0] = '\0'; | 5331 | q[0] = '\0'; |
| 5332 | 5332 | ||
| 5333 | strcpy (p, app_bundle_pathname); | 5333 | strcpy (p, app_bundle_pathname); |
| 5334 | strcat (p, "/Contents/Resources/lisp"); | 5334 | strcat (p, "/Contents/Resources/site-lisp"); |
| 5335 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 5335 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 5336 | strcat (q, p); | 5336 | strcat (q, p); |
| 5337 | 5337 | ||
| 5338 | strcpy (p, app_bundle_pathname); | 5338 | strcpy (p, app_bundle_pathname); |
| 5339 | strcat (p, "/Contents/Resources/leim"); | 5339 | strcat (p, "/Contents/Resources/lisp"); |
| 5340 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 5340 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 5341 | { | 5341 | { |
| 5342 | if (q[0] != '\0') | 5342 | if (q[0] != '\0') |
| @@ -5345,7 +5345,7 @@ init_mac_osx_environment () | |||
| 5345 | } | 5345 | } |
| 5346 | 5346 | ||
| 5347 | strcpy (p, app_bundle_pathname); | 5347 | strcpy (p, app_bundle_pathname); |
| 5348 | strcat (p, "/Contents/Resources/site-lisp"); | 5348 | strcat (p, "/Contents/Resources/leim"); |
| 5349 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 5349 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 5350 | { | 5350 | { |
| 5351 | if (q[0] != '\0') | 5351 | if (q[0] != '\0') |