aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-12-21 17:11:03 +0000
committerKarl Heuer1995-12-21 17:11:03 +0000
commitd36b882672cc704873f49d4dcc42716d8126fa09 (patch)
tree802b2bd235e9ffacc5db3c35d9915311bc4fae43 /src
parentd964248c519c4da03205b23bd301027c0f35d951 (diff)
downloademacs-d36b882672cc704873f49d4dcc42716d8126fa09.tar.gz
emacs-d36b882672cc704873f49d4dcc42716d8126fa09.zip
(init_lread): Add ../lisp (in build dir) to load-path
when dumping.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c5
1 files changed, 4 insertions, 1 deletions
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 ()
2288 } 2288 }
2289 } 2289 }
2290 else 2290 else
2291 Vload_path = decode_env_path (0, normal); 2291 /* ../lisp refers to the build directory.
2292 NORMAL refers to the lisp dir in the source directory. */
2293 Vload_path = Fcons (build_string ("../lisp"),
2294 decode_env_path (0, normal));
2292#endif 2295#endif
2293 2296
2294#ifndef WINDOWSNT 2297#ifndef WINDOWSNT