Mercurial > emacs
changeset 17605:83850481ae70
(init_lread): Don't add ../lisp to the dump-time load path.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 30 Apr 1997 18:41:53 +0000 |
parents | 77b137e2d9a7 |
children | d8cd49a0529c |
files | src/lread.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lread.c Wed Apr 30 18:34:17 1997 +0000 +++ b/src/lread.c Wed Apr 30 18:41:53 1997 +0000 @@ -2516,10 +2516,12 @@ } 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