summaryrefslogtreecommitdiff
path: root/src/lread.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-04-30 18:41:53 +0000
committerRichard M. Stallman <rms@gnu.org>1997-04-30 18:41:53 +0000
commit33482166272308547251d53e0c7c8db8a7b7fa57 (patch)
tree7bb24d2510853527d73ceb387cb2f7ac7d01f376 /src/lread.c
parent0eb357e3e8b882df06d915d95ad80e12f0a1efc9 (diff)
downloademacs-33482166272308547251d53e0c7c8db8a7b7fa57.tar.gz
(init_lread): Don't add ../lisp to the dump-time load path.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c
index 5b4cd3e748f..f46fa1717a2 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2516,10 +2516,12 @@ init_lread ()
}
else
{
- /* ../lisp refers to the build directory.
- NORMAL refers to the lisp dir in the source directory. */
- Vload_path = Fcons (build_string ("../lisp"),
- decode_env_path (0, normal));
+ /* NORMAL refers to the lisp dir in the source directory. */
+ /* We used to add ../lisp at the front here, but
+ that caused trouble because it was copied from dump_path
+ into Vload_path, aboe, when Vinstallation_directory was non-nil.
+ It should be unnecessary. */
+ Vload_path = decode_env_path (0, normal);
dump_path = Vload_path;
}
#endif