diff src/lread.c @ 13772:c387f71fe4b6

(init_lread): Add ../lisp (in build dir) to load-path when dumping.
author Karl Heuer <kwzh@gnu.org>
date Thu, 21 Dec 1995 17:11:03 +0000
parents 0a091134e047
children 621a575db6f7
line wrap: on
line diff
--- a/src/lread.c	Thu Dec 21 17:10:27 1995 +0000
+++ b/src/lread.c	Thu Dec 21 17:11:03 1995 +0000
@@ -2288,7 +2288,10 @@
 	}
     }
   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