aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-04-30 18:41:53 +0000
committerRichard M. Stallman1997-04-30 18:41:53 +0000
commit7b396c6c70b81391cfc1b0e3a144e6c0ca8af07f (patch)
treea15c10138b4d324803a27f2f0866a506ce716e7f /src
parent12ca5cdf3e6fce94cfebdad1e6688b1812a9b10e (diff)
downloademacs-7b396c6c70b81391cfc1b0e3a144e6c0ca8af07f.tar.gz
emacs-7b396c6c70b81391cfc1b0e3a144e6c0ca8af07f.zip
(init_lread): Don't add ../lisp to the dump-time load path.
Diffstat (limited to 'src')
-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 ()
2516 } 2516 }
2517 else 2517 else
2518 { 2518 {
2519 /* ../lisp refers to the build directory. 2519 /* NORMAL refers to the lisp dir in the source directory. */
2520 NORMAL refers to the lisp dir in the source directory. */ 2520 /* We used to add ../lisp at the front here, but
2521 Vload_path = Fcons (build_string ("../lisp"), 2521 that caused trouble because it was copied from dump_path
2522 decode_env_path (0, normal)); 2522 into Vload_path, aboe, when Vinstallation_directory was non-nil.
2523 It should be unnecessary. */
2524 Vload_path = decode_env_path (0, normal);
2523 dump_path = Vload_path; 2525 dump_path = Vload_path;
2524 } 2526 }
2525#endif 2527#endif