From 7b396c6c70b81391cfc1b0e3a144e6c0ca8af07f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 30 Apr 1997 18:41:53 +0000 Subject: [PATCH] (init_lread): Don't add ../lisp to the dump-time load path. --- src/lread.c | 10 ++++++---- 1 file 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 -- 2.39.5