From: Richard M. Stallman Date: Wed, 30 Apr 1997 18:41:53 +0000 (+0000) Subject: (init_lread): Don't add ../lisp to the dump-time load path. X-Git-Tag: emacs-20.1~2340 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b396c6c70b81391cfc1b0e3a144e6c0ca8af07f;p=emacs.git (init_lread): Don't add ../lisp to the dump-time load path. --- 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