From: Karl Heuer Date: Thu, 21 Dec 1995 17:11:03 +0000 (+0000) Subject: (init_lread): Add ../lisp (in build dir) to load-path X-Git-Tag: emacs-19.34~2088 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d36b882672cc704873f49d4dcc42716d8126fa09;p=emacs.git (init_lread): Add ../lisp (in build dir) to load-path when dumping. --- diff --git a/src/lread.c b/src/lread.c index 9923967c98b..8315b7ac711 100644 --- a/src/lread.c +++ b/src/lread.c @@ -2288,7 +2288,10 @@ init_lread () } } else - Vload_path = decode_env_path (0, normal); + /* ../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)); #endif #ifndef WINDOWSNT