aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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