comparison 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
comparison
equal deleted inserted replaced
13771:28790743a5a3 13772:c387f71fe4b6
2286 } 2286 }
2287 } 2287 }
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
2295 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is 2298 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
2296 almost never correct, thereby causing a warning to be printed out that 2299 almost never correct, thereby causing a warning to be printed out that